diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-03-03 08:26:41 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-03-03 08:27:22 -0800 |
commit | cc0e845c187fb98ebd2343750cfbacd1ab39fc57 (patch) | |
tree | 6a4c041ee3c1803583736372fba5425a6bd46ca1 | |
parent | aab8c3a9b3e5434921309261c5f2eabd0cae2ae7 (diff) | |
download | pandoc-cc0e845c187fb98ebd2343750cfbacd1ab39fc57.tar.gz |
Default q:quote style for HTML5 template.
-rw-r--r-- | default.html5 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/default.html5 b/default.html5 index 47a3fc934..800f8a626 100644 --- a/default.html5 +++ b/default.html5 @@ -13,6 +13,11 @@ $endif$ <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> +$if(quotes)$ + <style type="text/css"> + q { quotes: "“" "”" "‘" "’"; } + </style> +$endif$ $if(highlighting-css)$ <style type="text/css"> $highlighting-css$ |