Fix handling of HTML files without front matter
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 9 Mar 2020 11:04:33 +0000 (12:04 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 9 Mar 2020 14:01:55 +0000 (15:01 +0100)
commitffcb4aeb8e392a80da7cad0f1e03a4102efb24ec
tree945afe631ef8451f8a401b0a159a78b64e905713
parent8279d2e2271ee64725133d36a12d1d7e2158bffd
Fix handling of HTML files without front matter

This means that any HTML file inside /content will be treated as a regular file.

If you want it processes with shortcodes and a layout, add front matter.

The defintion of an HTML file here is:

* File with extension .htm or .html
* With first non-whitespace character "<" that isn't a HTML comment.

This is in line with the documentation.

Fixes #7030
Fixes #7028
See #6789
18 files changed:
deps/deps.go
deps/deps_test.go
hugofs/files/classifier.go
hugofs/files/classifier_test.go
hugofs/filter_fs.go
hugolib/content_map_test.go
hugolib/content_render_hooks_test.go
hugolib/page.go
hugolib/page__content.go
hugolib/page__per_output.go
hugolib/shortcode.go
hugolib/site_test.go
hugolib/template_test.go
parser/pageparser/item.go
parser/pageparser/pagelexer_intro.go
parser/pageparser/pageparser_intro_test.go
tpl/template.go
tpl/tplimpl/template.go