diff --git a/frontend/packages/app/utils/blocks-to-markdown.ts b/frontend/packages/app/utils/blocks-to-markdown.ts index 9407094c2..b51fd840f 100644 --- a/frontend/packages/app/utils/blocks-to-markdown.ts +++ b/frontend/packages/app/utils/blocks-to-markdown.ts @@ -64,7 +64,9 @@ function convertBlockToHtml(block, isListItem = false) { case 'paragraph': return `

${contentHtml}

` case 'image': - return `${contentHtml}` + const {url, name, width} = block.props + const titleWithWidth = `${name} | width=${width}` + return `${contentHtml}` case 'codeBlock': return `