aboutsummaryrefslogtreecommitdiff
path: root/templates
AgeCommit message (Collapse)AuthorFilesLines
2012-12-29Moved all data files and templates to data/.John MacFarlane1-6/+0
2012-11-07Updated templates with new default.epub and default.epub3.John MacFarlane1-8/+5
2012-11-06Textile reader/writer: Fixed autolinks.John MacFarlane1-5/+8
Previously the textile reader and writer incorrectly implented RST-style autolinks for URLs and email addresses. This has been fixed. Now an autolink is done this way: "$":http://myurl.com
2012-11-04EPUB template: UTF-8, lang tag, meta tags.John MacFarlane1-5/+5
2012-11-04EPUB writer: Rationalized templates.John MacFarlane1-5/+5
* Previously there were three different templates involved in epub production. There is now just one template, default.epub or default.epub3. * It can now be overridden using `--template`, just like other templates.
2012-11-04EPUB: removed need for separate epub-titlepage template.John MacFarlane1-7/+5
The titlepage stuff is now folded into the epub-page template. A titlepage variable selects it.
2012-11-04EPUB writer: Removed need for separate epub-coverpage template.John MacFarlane1-7/+6
The standard epub-page template is now used.
2012-11-04EPUB writer: Improved handling of CSS.John MacFarlane1-5/+8
* Code highlighting now works by default. * Quote styles work as in pandoc's HTML writer.
2012-11-04Improved support for MathML in EPUB3.John MacFarlane1-5/+5
* MathML math method now used always in EPUB3 (even if another math method specified in options). * epub:switch is used to specify a non-MathML default. This is supposed to proide a good fallback behavior in older readers, though I'm not sure how well it works in practice.
2012-11-02EPUB: Set epub3 template variable controlling doctype.John MacFarlane1-5/+5
2012-11-02Use title element in epub templates.John MacFarlane1-8/+5
2012-10-11EPUB writer improvements.John MacFarlane1-6/+7
* We now convert to XHTML before cutting into chapter-sized chunks. This fixes a number of problems. * `--number-sections` now works properly. * A proper three-level table of contents is now used in `toc.ncx`. There is no longer a subsidiary table of contents at the beginning of each chapter. * New epub-page template without the `$title$` variable. Titles are left in the chapter bodies as an initial h1. * Closes #539.
2012-09-16LaTeX/Beamer templates: Don't require 'float' package for tables.John MacFarlane1-5/+7
We don't actually seem to use the '[H]' option.
2012-09-16LaTeX writer: Don't rely on the enumerate package.John MacFarlane1-5/+5
Instead, use standard LaTeX commands to change numbering style.
2012-09-15LaTeX, beamer templates: Use longtable instead of ctable.John MacFarlane1-8/+5
2012-09-08Added papersize variable to latex, context templates.John MacFarlane1-10/+7
2012-08-25Beamer template: Remove English-centric strings in section pages.John MacFarlane1-8/+10
Section pages used to have "Section" and a number as well as the section title. Now they just have the title. Similarly for part and subsection. Closes #566.
2012-08-12Fixed titleblock in markdown, plain templates.John MacFarlane1-5/+9
Now it is just a single string. Previously separate title, author, and date variables were used, but this didn't allow different kinds of title blocks.
2012-07-22Added scale-to-width feature to beamer templateJohn MacFarlane1-5/+5
2012-06-08LaTeX template: Separate urlcolor and linkcolor variables.John MacFarlane1-7/+5
2012-06-05LaTeX template: use ifxetex, ifluatex instead of iftex.John MacFarlane1-5/+7
2012-06-05LaTeX template: Removed extra blank line.John MacFarlane1-7/+5
2012-06-05LaTeX template improvements.John MacFarlane1-5/+7
* Don't print date unless one is given explicitly in the document. * Use iftex instead of ifxetex, ifluatex. * Simplified templates. * Use fontenc [T1] by default, and lmodern. * Use microtype if available (with pdflatex only).
2012-06-05LaTeX template: Added linkcolor and links-as-notes variables.John MacFarlane1-10/+5
Make TOC links black.
2012-06-03Updated LaTeX template.John MacFarlane1-7/+9
Internal links black; removed unneeded url package.
2012-06-03Revert "Updated LaTeX template (use black for internal links and TOC)."John MacFarlane1-9/+7
This reverts commit 4c5616fe2d761f35ea96f7722355a183cfbd28d6.
2012-06-03Updated LaTeX template (use black for internal links and TOC).John MacFarlane1-7/+9
2012-05-30Slidy lang support and new slideous template.John MacFarlane1-5/+8
2012-04-28Use blue for URL links in latex/pdf output.John MacFarlane1-5/+5
2012-04-21LaTeX writer: Use fixltx2e package to provide '\textsubscript'.John MacFarlane1-7/+5
2012-04-06Fixed document encoding in texinfo template.John MacFarlane1-5/+7
Resolves Debian Bug #667816.
2012-04-03LaTeX writer: don't use eurosym package unless document has a €.John MacFarlane1-5/+5
2012-03-28Fixed issue with q in dzslides template.John MacFarlane1-5/+5
2012-03-25Added PDF metadata (title,author) in LaTeX standalone + PDF output.John MacFarlane1-5/+5
Closes #459.
2012-03-23dzslides: Updated template.html and styles in default template.John MacFarlane1-5/+5
Closes #454.
2012-03-15Added mathfont variable to latex template.John MacFarlane1-5/+5
2012-03-15LaTeX template tweaks:John MacFarlane1-5/+5
- allow geometry variable to be repeated for multiple options - use mainfont instead of romanfont
2012-03-14Updated latex template.John MacFarlane1-5/+5
2012-03-14Updated latex template.John MacFarlane1-7/+5
2012-03-14Added romanfont, sansfont, monofont variables to latex template.John MacFarlane1-5/+7
2012-03-14Added `geometry` variable to default LaTeX template.John MacFarlane1-5/+5
2012-03-07Set mainlang variable in context writer.John MacFarlane1-11/+5
This parallels behavior of latex writer. Mainlang is the last of a comma-separated list of languages in lang.
2012-03-07Fixes list label positions in beamer.John MacFarlane1-5/+11
2012-03-05Fixed ployglossia support in LaTeX template for multiple langs.John MacFarlane1-5/+5
\setmainlanguage will now just use the last of a comma-separated list of languages.
2012-03-04Fixed default LaTeX template so \euro and € work.John MacFarlane1-9/+5
Closes #309.
2012-03-04Updated LaTeX template for better language support.John MacFarlane1-5/+9
Uses polyglossia if xetex, sets lang as documentclass option. Thanks to François Gannaz.
2012-03-03Updated context template to avoid extra spaces.John MacFarlane1-5/+5
2012-03-03Use <q> tags for Quoted items for HTML5 output.John MacFarlane1-5/+5
The quote style can be changed by modifying the template or including a css file. A default quote style is included.
2012-02-11Fixed html5 template so it works properly with highlighting.John MacFarlane1-5/+5
2012-01-31Support `--mathml` flag in docbook.John MacFarlane1-5/+5