From 5619f8cc947b0a867ef44918a90c3b3f258acf37 Mon Sep 17 00:00:00 2001 From: Matic Jurglic Date: Tue, 25 Feb 2025 15:07:05 +0100 Subject: [PATCH 1/2] Escape content in
 so that the browser doesn't
 render html inside 

---
 packages/runtime-common/marked-sync.ts | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/packages/runtime-common/marked-sync.ts b/packages/runtime-common/marked-sync.ts
index d672a09e81..1ae85cd661 100644
--- a/packages/runtime-common/marked-sync.ts
+++ b/packages/runtime-common/marked-sync.ts
@@ -22,7 +22,7 @@ export function markedSync(markdown: string) {
           // also note that since we are in common, we don't have ember-window-mock
           // available to us.
           globalThis.localStorage?.setItem(id, code);
-          return `
${code}
`; + return `
${escapeHtmlInPreTags(code)}
`; }, }, }) @@ -32,3 +32,11 @@ export function markedSync(markdown: string) { export function markdownToHtml(markdown: string | null | undefined): string { return markdown ? sanitizeHtml(markedSync(markdown)) : ''; } + +function escapeHtmlInPreTags(html: string) { + // For example, html can be

Hello

+ // We want to escape the

Hello

so that it is rendered as + //
<h1>Hello</h1>
, otherwise the h1 will + // be rendered as a real header, not code (same applies for other html tags, such as