]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/pages_under_templates_are_invalid.mdwn
6e47a3c0c1880b02c88dbdde932d6be3ff95bff3
[git.ikiwiki.info.git] / doc / bugs / pages_under_templates_are_invalid.mdwn
1 Pages under templates/ are invalid (in fact, not only invalid, but also not well-formed) xhtml pages.
3 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.
5 It seems that HTML::Template also support `<!--Variable-->` syntax instead
6 of `<Variable>`.  Chaning to this syntax will solve this problem, I guess.
9 Even if changed to `<!-- TMPL_VAR -->` style, the problem may still exist if the template contains if else block.
11 Maybe just encode all &lt; and &gt; when compling pages within the templates folder will solve this problem.