diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-12-05 09:36:34 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-12-05 09:36:34 -0800 |
commit | 64f78b3d5f51fcb61632193525b474cc6b8f3943 (patch) | |
tree | fae9b0bba2fa2eb7c876206bc069c3993813d48e /data/templates | |
parent | 79a10388daedf959c23dfef108a035d436108657 (diff) | |
download | pandoc-64f78b3d5f51fcb61632193525b474cc6b8f3943.tar.gz |
HTML-based templates: Add CSS to suppress bullet on unordered task lists.
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/styles.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/data/templates/styles.html b/data/templates/styles.html index e17c2eeb4..34cd4de89 100644 --- a/data/templates/styles.html +++ b/data/templates/styles.html @@ -3,6 +3,7 @@ span.smallcaps{font-variant: small-caps;} span.underline{text-decoration: underline;} div.column{display: inline-block; vertical-align: top; width: 50%;} div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;} +ul.task-list{list-style: none;} $if(quotes)$ q { quotes: "“" "”" "‘" "’"; } $endif$ |