diff --git a/frontend/packages/app/utils/blocks-to-markdown.ts b/frontend/packages/app/utils/blocks-to-markdown.ts index 7a32009a0..4046e629c 100644 --- a/frontend/packages/app/utils/blocks-to-markdown.ts +++ b/frontend/packages/app/utils/blocks-to-markdown.ts @@ -87,6 +87,8 @@ function convertBlockToHtml( return `
![${block.props.name}](${block.props.url} "width=${block.props.width}")
` case 'file': return `[${block.props.name}](${block.props.url} "size=${block.props.size}")
` + case 'web-embed': + return `[[tweet(${block.props.url})]]
` case 'math' || 'equation': return `$$${contentHtml}$$
` default: