Skip to content

Commit 4176c27

Browse files
fix: remove extra quote from rendered callouts
1 parent 2c7944e commit 4176c27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BlockRenderer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export class BlockRenderer {
122122
case "callout":
123123
return {
124124
lines:
125-
`> **${this.renderIcon(block.callout.icon)}**" `+ // render emoji as bold, this enables css to target it as `blockquote > strong:first-child`
125+
`> **${this.renderIcon(block.callout.icon)}** `+ // render emoji as bold, this enables css to target it as `blockquote > strong:first-child`
126126
(await this.richText.renderMarkdown(block.callout.text)),
127127
};
128128
case "divider":

0 commit comments

Comments
 (0)