pass all html's through goquery

This commit is contained in:
Kirill Zhuravlev 2023-02-14 23:58:11 +01:00 committed by Avelino
parent 34c5e361ee
commit 084f2fcb05
No known key found for this signature in database
GPG Key ID: B345B4D52E98180A

22
main.go
View File

@ -153,16 +153,30 @@ func renderCategories(objs map[string]Object) error {
// FIXME: embed templates
// FIXME: parse templates once at start
categoryIndexFilename := filepath.Join(categoryDir, "index.html")
f, err := os.Create(categoryIndexFilename)
fmt.Printf("Write category Index file: %s\n", categoryIndexFilename)
buf := bytes.NewBuffer(nil)
if err := tplCategoryIndex.Execute(buf, obj); err != nil {
return err
}
// Sanitize HTML. This is not necessary, but allows to have content
// of all html files in same style.
{
query, err := goquery.NewDocumentFromReader(buf)
if err != nil {
return err
}
fmt.Printf("Write category Index file: %s\n", categoryIndexFilename)
if err := tplCategoryIndex.Execute(f, obj); err != nil {
html, err := query.Html()
if err != nil {
return err
}
if err := os.WriteFile(categoryIndexFilename, []byte(html), 0644); err != nil {
return err
}
}
}
return nil