diff options
author | John MacFarlane <jgm@berkeley.edu> | 2013-01-15 18:38:37 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2013-01-15 18:38:37 -0800 |
commit | 40ef433abb89cb205ee25077fab343951caabe35 (patch) | |
tree | ed36db6ef96b88f848ff6791913c2a0c590e5a75 /default.html | |
parent | b49608bf92ad66f255cd3371da834ddb7bee5211 (diff) | |
download | pandoc-40ef433abb89cb205ee25077fab343951caabe35.tar.gz |
HTML template: Add quotes styles if 'quotes'.
Diffstat (limited to 'default.html')
-rw-r--r-- | default.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/default.html b/default.html index 8e23d9bb1..b7b74c223 100644 --- a/default.html +++ b/default.html @@ -12,6 +12,9 @@ $if(date-meta)$ $endif$ <title>$if(title-prefix)$$title-prefix$ - $endif$$pagetitle$</title> <style type="text/css">code{white-space: pre;}</style> +$if(quotes)$ + <style type="text/css">q { quotes: "“" "”" "‘" "’"; }</style> +$endif$ $if(highlighting-css)$ <style type="text/css"> $highlighting-css$ |