-- {code} -+++ {hasMarkdownFormatting ? ( ++ {processedCode} ++ ) : ( ++ {code} ++ )} +
+
{textContent}
) @@ -1265,7 +1578,8 @@ function parseMarkdownContent( } } } - const displayUrl = thumbnailUrl || imgUrl + // Don't use thumbnails in notes - use original URL + const displayUrl = imgUrl parts.push(+
{textContent}
) @@ -1321,7 +1635,7 @@ function parseMarkdownContent( const paraContent = parseInlineMarkdown(normalizedPara, `text-${patternIdx}-para-${paraIdx}`, footnotes) // Wrap in paragraph tag (no whitespace-pre-wrap, let normal text wrapping handle it) parts.push( -+
{paraContent}
) @@ -1397,8 +1711,9 @@ function parseMarkdownContent( } } } - const displayUrl = thumbnailUrl || url - const hasThumbnail = !!thumbnailUrl + // Don't use thumbnails in notes - use original URL + const displayUrl = url + const hasThumbnail = false parts.push(+
{paragraphContent}
) @@ -1856,7 +2172,7 @@ function parseMarkdownContent( { e.stopPropagation() e.preventDefault() @@ -1931,7 +2247,7 @@ function parseMarkdownContent( if (normalizedPara) { const paraContent = parseInlineMarkdown(normalizedPara, `text-end-para-${imgIdx}-${paraIdx}`, footnotes) parts.push( -+
{paraContent}
) @@ -1998,7 +2314,7 @@ function parseMarkdownContent( if (normalizedPara) { const paraContent = parseInlineMarkdown(normalizedPara, `text-end-final-para-${paraIdx}`, footnotes) parts.push( -+
{paraContent}
) @@ -2017,7 +2333,7 @@ function parseMarkdownContent( if (normalizedPara) { const paraContent = parseInlineMarkdown(normalizedPara, `text-end-para-${paraIdx}`, footnotes) parts.push( -+
{paraContent}
) @@ -2040,7 +2356,7 @@ function parseMarkdownContent( if (!normalizedPara) return null const paraContent = parseInlineMarkdown(normalizedPara, `text-only-para-${paraIdx}`, footnotes) return ( -+
{paraContent}
) @@ -2370,7 +2686,8 @@ function parseInlineMarkdown(text: string, keyPrefix: string, _footnotes: Map