diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-12-14 11:29:35 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-12-14 11:29:35 -0800 |
commit | 9fe6d91a1a75d6a3fd5a9ef5884b13be5055920b (patch) | |
tree | 266a61eca60841f00ef06822d1bbe6c5d6d2c982 /data/templates/default.dzslides | |
parent | ee60ba5252360d2efbf9cf30197236a21a15a924 (diff) | |
download | pandoc-9fe6d91a1a75d6a3fd5a9ef5884b13be5055920b.tar.gz |
Remove unnecessary type="text/css" on style and link for HTML5.
Closes #5146.
Diffstat (limited to 'data/templates/default.dzslides')
-rw-r--r-- | data/templates/default.dzslides | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/default.dzslides b/data/templates/default.dzslides index 892a434cb..96862a2fd 100644 --- a/data/templates/default.dzslides +++ b/data/templates/default.dzslides @@ -12,7 +12,7 @@ $if(keywords)$ <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$"> $endif$ <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title> - <style type="text/css"> + <style> code{white-space: pre-wrap;} span.smallcaps{font-variant: small-caps;} span.underline{text-decoration: underline;} @@ -22,7 +22,7 @@ $if(quotes)$ $endif$ </style> $if(highlighting-css)$ - <style type="text/css"> + <style> $highlighting-css$ </style> $endif$ |