{ doc.Title }
if len(doc.TOC) > 0 {
On this page
for _, item := range doc.TOC {
{ item.Title }
}
}
@rawHTML(doc.Content)
package templates import ( "fmt" "html/template" ) templ rawHTML(content string) { { template.HTML(content) } } templ DocsLayout(nav Navigation, doc Document, user User) {