aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/pages_under_templates_are_invalid.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-01-05 01:41:57 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-01-05 01:41:57 -0500
commita61cf7a0d4711054ec8d263ccd3eead5f87b52d8 (patch)
tree37d80b7d78c2a0cda03e27ae59c46c2417562e36 /doc/bugs/pages_under_templates_are_invalid.mdwn
parentf51e47d7f9b0dbc1fe8c356acadbf5ef2da227af (diff)
downloadikiwiki-a61cf7a0d4711054ec8d263ccd3eead5f87b52d8.tar
ikiwiki-a61cf7a0d4711054ec8d263ccd3eead5f87b52d8.tar.gz
misc fixes so I can read this
Diffstat (limited to 'doc/bugs/pages_under_templates_are_invalid.mdwn')
-rw-r--r--doc/bugs/pages_under_templates_are_invalid.mdwn7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/bugs/pages_under_templates_are_invalid.mdwn b/doc/bugs/pages_under_templates_are_invalid.mdwn
index da4ffb295..6e47a3c0c 100644
--- a/doc/bugs/pages_under_templates_are_invalid.mdwn
+++ b/doc/bugs/pages_under_templates_are_invalid.mdwn
@@ -1,10 +1,11 @@
-ages under templates/ are invalid (in fact, not only invalid, but also not well-formed) xhtml pages.
+Pages under templates/ are invalid (in fact, not only invalid, but also not well-formed) xhtml pages.
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.
-It seems that HTML::Template also support <!--Variable--> syntax instead of <Variable>. Chaning to this syntax will solve this problem, I guess.
+It seems that HTML::Template also support `<!--Variable-->` syntax instead
+of `<Variable>`. Chaning to this syntax will solve this problem, I guess.
-Even if changed to <!-- TMPL_VAR --> style, the problem may still exist if the template contains if else block.
+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.