diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-02-06 10:30:52 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-02-06 10:30:52 -0800 |
commit | 47ba15f5a1e4da7d9754dc0258a11798d69254b0 (patch) | |
tree | 7ae259946984f1497774319b96729b92338313f9 /src/Text/Pandoc | |
parent | fb5faaa91e32ee252eef2ca542c7666d800591e5 (diff) | |
download | pandoc-47ba15f5a1e4da7d9754dc0258a11798d69254b0.tar.gz |
Revert "Use us-ascii charset in HTML template if --ascii option."
This reverts commit aec54899606bed2580394baa1369e58ede20fde8.
No need for this, since a UTF-8 charset will handle ascii just fine.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Writers/HTML.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/HTML.hs b/src/Text/Pandoc/Writers/HTML.hs index 576a21dd7..b3320fa06 100644 --- a/src/Text/Pandoc/Writers/HTML.hs +++ b/src/Text/Pandoc/Writers/HTML.hs @@ -178,7 +178,6 @@ inTemplate opts tit auths date toc body' newvars = (case toc of Just t -> [ ("toc", showHtmlFragment t)] Nothing -> []) ++ - [ ("ascii","true") | writerAscii opts ] ++ [ ("author", a) | a <- authors ] in renderTemplate context $ writerTemplate opts |