diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2009-12-31 01:15:42 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2009-12-31 01:15:42 +0000 |
commit | 7baa79597e1306eeed0313ffafd240b4df5080bb (patch) | |
tree | eebdcb670876304bd3fb588696084f8357832208 /templates | |
parent | 5ba6c0911cb44c3a095bc3cedc51e4afa79c6b30 (diff) | |
download | pandoc-7baa79597e1306eeed0313ffafd240b4df5080bb.tar.gz |
Use $for$ for --css option in HTML writer.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1721 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'templates')
-rw-r--r-- | templates/html.template | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/html.template b/templates/html.template index 129febb03..68cacd568 100644 --- a/templates/html.template +++ b/templates/html.template @@ -4,7 +4,9 @@ <title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="pandoc" /> - <meta name="author" content="$authors$" /> +$for(author)$ + <meta name="author" content="$author$" /> +$endfor$ <meta name="date" content="$date$" /> $if(highlighting)$ <style type="text/css"> @@ -28,6 +30,9 @@ $if(highlighting)$ pre.sourceCode span.Error { color: red; font-weight: bold; } </style> $endif$ +$for(css)$ + <link rel="stylesheet" href="$css$" type="text/css" /> +$endfor$ $if(header-includes)$ $header-includes$ $endif$ |