diff options
author | Joey Hess <joey@kitenet.net> | 2010-05-01 20:40:31 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-05-01 20:49:18 -0400 |
commit | a547d2685866898665fad221939b0b820a42a088 (patch) | |
tree | 755759b08dc571425e677d121a3fd0552c110b72 /IkiWiki/Render.pm | |
parent | ccafb10007731d04e0ff6aa36978690e6dfa6dec (diff) | |
download | ikiwiki-a547d2685866898665fad221939b0b820a42a088.tar ikiwiki-a547d2685866898665fad221939b0b820a42a088.tar.gz |
html5 option
* Ikiwiki can be configured to generate html5 instead of the default xhtml
1.0. The html5 output mode is experimental, not yet fully standards
compliant, and will be subject to rapid change.
Diffstat (limited to 'IkiWiki/Render.pm')
-rw-r--r-- | IkiWiki/Render.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm index 7e3d78861..5923f5e74 100644 --- a/IkiWiki/Render.pm +++ b/IkiWiki/Render.pm @@ -138,6 +138,7 @@ sub genpage ($$) { mtime => displaytime($pagemtime{$page}), ctime => displaytime($pagectime{$page}), baseurl => baseurl($page), + html5 => $config{html5}, ); run_hooks(pagetemplate => sub { |