a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add blockquote style to pre-render

+3 -1
+3 -1
components/Blocks/TextBlock/index.tsx
··· 140 140 if (permissions.write && (props.first || props.pageType === "canvas")) 141 141 content = ( 142 142 <div 143 - className={`${props.className} pointer-events-none italic text-tertiary flex flex-col `} 143 + className={`${props.className} 144 + pointer-events-none italic text-tertiary flex flex-col `} 144 145 > 145 146 {headingLevel?.data.value === 1 146 147 ? "Title" ··· 173 174 style={{ wordBreak: "break-word" }} // better than tailwind break-all! 174 175 className={` 175 176 ${alignmentClass} 177 + ${props.type === "blockquote" ? "border-l-2 border-border pl-2 " : ""} 176 178 ${props.type === "heading" ? HeadingStyle[headingLevel?.data.value || 1] : ""} 177 179 w-full whitespace-pre-wrap outline-none ${props.className} `} 178 180 >