ikiwiki/doc/bugs/pages_under_templates_are_i...

17 lines
790 B
Plaintext
Raw Normal View History

2008-01-05 07:41:57 +01:00
Pages under templates/ are invalid (in fact, not only invalid, but also not well-formed) xhtml pages.
2008-01-05 08:00:49 +01:00
This problem is especially serious when you change extension from .html to
.xhtml in ikiwiki.setup and use Firefox. Since Firefox will display a error
message only for not well-formed application/xhtml+xml pages.
2008-01-05 07:41:57 +01:00
It seems that HTML::Template also support `<!--Variable-->` syntax instead
of `<Variable>`. Chaning to this syntax will solve this problem, I guess.
2008-01-05 07:41:57 +01:00
Even if changed to `<!-- TMPL_VAR -->` style, the problem may still exist if the template contains if else block.
Maybe just encode all &lt; and &gt; when compling pages within the templates folder will solve this problem.
2008-01-05 08:00:49 +01:00
> I never noticed this bug, since it only happens if the htmlscrubber is
> disabled. --[[Joey]]