summaryrefslogtreecommitdiff
path: root/data/templates/default.html4
AgeCommit message (Collapse)Author
2013-02-27LaTeX template: Load microtype after fonts.John MacFarlane
Microtype needs to know what fonts are being used. Thanks to dfc for the patch.
2013-02-20Small spacing change in context template.John MacFarlane
2013-02-20ConTeXt template: Use `\placecontent` for toc.John MacFarlane
Configure it for toc depth. Thanks to Aditya Mahajan.
2013-02-19ConTeXt writer: Removed `\placecontent`.John MacFarlane
This produced a duplicate toc, in conjunction with `\placelist`.
2013-02-18LaTeX template: set secnumdepth to 5 if `--number-sections` specified.John MacFarlane
This yields behavior equivalent to the other writers, numbering level 4 and 5 headers too. Closes #753.
2013-02-03Beamer template: Lines to fix captions with longtable.John MacFarlane
Thanks to Joost Kremers.
2013-01-21LaTeX template: Use `\urlstyle{same}` to avoid monospace URLs.John MacFarlane
2013-01-19Updated templates.John MacFarlane
Use upquote package if it exists.
2013-01-18RTF writer: Added writeRTFWithEmbeddedImages.John MacFarlane
* RTF writer: Export writeRTFWithEmbeddedImages instead of rtfEmbedImage. * Text.Pandoc: Use writeRTFWithEmbeddedImages for RTF. * Moved code for embedding images in RTF out of pandoc.hs.
2013-01-15Added `writerHtmlQTags` and `--html-q-tags` option.John MacFarlane
The previous default was to use `<q>` tags in HTML5. But `<q>` tags are also valid HTML4, and they are not very robust in HTML5. Some user agents don't support them, and some CSS resets prevent pandoc's quotes CSS from working properly (e.g. bootstrap). It seems a better default just to insert quote characters, but the option is provided for those who have gotten used to using `<q>` tags.
2013-01-05Implemented --toc-depth (and --toc!) for RTF writer.John MacFarlane
2013-01-05Support --toc-depth in context writer.John MacFarlane
2013-01-05Changed --toc-level to --toc-depth.John MacFarlane
2013-01-05Implemented --toc-level for rst.John MacFarlane
2013-01-05Implemented --toc-level in LaTeX writer.John MacFarlane
2013-01-04Added css to preserve spaces in <code> tags.John MacFarlane
Thanks to Dirk Laurie.
2012-12-29Moved all data files and templates to data/.John MacFarlane