Files
codeql/go/ql/test/extractor-tests/html/test.html
2022-05-20 10:07:19 -07:00

12 lines
261 B
HTML

<!-- HTML fragment for testing extraction of Go templates -->
<h1>{{.PageTitle}}</h1>
<ul>
{{range .Todos}}
{{if .Done}}
<li class="done">{{.Title}}</li>
{{else}}
<li>{{.Title}}</li>
{{end}}
{{end}}
</ul>