From ad44d35d9b54d56e4a9eb7ed305b8c325b72a4f3 Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Sat, 16 May 2026 22:38:38 -0400 Subject: [PATCH] fix(ui): render markdown in mobile inline expansion Use renderMd instead of escHtml for exp-body content. Add .md class for consistent markdown styling. --- web/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app.js b/web/app.js index 42078f6..249a830 100644 --- a/web/app.js +++ b/web/app.js @@ -662,7 +662,7 @@ actions += ``; } return `
-
${escHtml(e.body || '')}
+
${renderMd(e.body || '')}
${tags ? `
${tags}
` : ''}
${actions}