docs: fix markdown rendering with @rawHTML directive

Phase 1 complete: Fix rawHTML function in template
- Change { doc.Content } to @rawHTML(doc.Content)
- Ensures markdown converts to HTML properly
- Fixes headings, lists, code blocks formatting
This commit is contained in:
2026-02-02 08:51:33 -05:00
parent f5b61d2aea
commit 254085cad9
+1 -1
View File
@@ -238,7 +238,7 @@ templ DocsLayout(nav Navigation, doc Document, user User) {
<!-- Content -->
<div>
{ doc.Content }
@rawHTML(doc.Content)
</div>
</div>