diff options
| author | Andrew Dunning <andunning@gmail.com> | 2015-10-22 18:05:18 -0400 |
|---|---|---|
| committer | Andrew Dunning <andunning@gmail.com> | 2015-10-22 18:05:18 -0400 |
| commit | 400dadd4445e949a0fcd96274bd3b4ef24864244 (patch) | |
| tree | c2ec12d200b8eefb54b904e93d045e04d131fbbf /default.slideous | |
| parent | f92d725b0516b8bb728525dcd76c3b9ae54f5e3f (diff) | |
| download | pandoc-400dadd4445e949a0fcd96274bd3b4ef24864244.tar.gz | |
Realign HTML templates.
Add lang, dir, quotes where not included previously; always make
display of author and date conditional.
Diffstat (limited to 'default.slideous')
| -rw-r--r-- | default.slideous | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/default.slideous b/default.slideous index 57647186e..c35e7432c 100644 --- a/default.slideous +++ b/default.slideous @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$> +<html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$$if(dir)$ dir="$dir$"$endif$> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Style-Type" content="text/css" /> @@ -17,6 +17,9 @@ $if(keywords)$ $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$ |
