summaryrefslogtreecommitdiff
path: root/data
Commit message (Collapse)AuthorAge
...
* Latest template changes: title attribute on title section in dzslides.John MacFarlane2013-06-02
|
* Made `\includegraphics` more flexible in LaTeX template.John MacFarlane2013-05-07
| | | | | | Now it can be used with options, if needed. Thanks to Bernhard Weichel.
* Fixed errors in revealjs template.John MacFarlane2013-05-01
|
* revealjs templates: use query hashes for defaults, include remotes.John MacFarlane2013-04-30
|
* LaTeX template: Changes to make mathfont work with xelatex.John MacFarlane2013-04-25
| | | | | We need the mathspec library, not just fontspec, for this. We also need to set options for setmathfont. Closes #734.
* DocBook template: Use DocBook 4.5 doctype.John MacFarlane2013-04-15
|
* Added `Text.Pandoc.Writers.Custom`, `--print-custom-lua-writer`.John MacFarlane2013-04-14
| | | | | | | | | | pandoc -t data/sample.lua will load the script sample.lua and use it as a custom writer. data/sample.lua is provided as an example. Added `--print-custom-lua-writer` option to print the sample script.
* Docx writer: Use Compact style for Plain block elements.John MacFarlane2013-03-30
| | | | | This differentiates between tight and loose lists. Closes #775.
* Slidy: Use slidy.js rather than slidy.js.gz.John MacFarlane2013-03-25
| | | | | | | Reason: some browsers have trouble with the gzipped js file, at least on the local file system. Closes #795.
* revealjs template: include pdf stylesheet by default.John MacFarlane2013-03-24
|
* New revealjs template.John MacFarlane2013-03-23
|
* Updated templates to include reveal.js.John MacFarlane2013-03-22
|
* Added basic support for reveal.js.Jamie F. Olson2013-03-21
| | | | | | | | Support unordered and ordered lists with "fragment" elements. Modified by JGM to remove the --reveal_js-url command-line option. Instead use -V reveal_js-url=... as with slidy and the other slide formats. Also cleaned up the list code in the HTML writer.
* Added OPML template, tests.John MacFarlane2013-03-20
| | | | | Minor fixes to OPML writer. Improved OPML reader tests.
* beamer template: Provide `\Oldincludegraphics` as in LaTeX template.John MacFarlane2013-03-03
| | | | | | | The template redefines `\includegraphics` to give special treatment for too-wide images. But this causes problems for literal uses of `\includegraphics`. This change allows authors to use `\Oldincludegraphics`, as in the latex template.
* EPUB writer: Include html TOC even in epub2.John MacFarlane2013-03-03
| | | | | | | | | | | * The TOC is included in `<spine>`, but `linear` is set to `no` unless the `--toc` option is specified. * Include `<guide>` element in OPF. * This should allow the TOC to be useable in Kindles when converted with kindlegen. * Results validate with epubcheck 3.0 for both epub and epub3 output. * Closes #773.
* LaTeX template: Load microtype after fonts.John MacFarlane2013-02-27
| | | | | Microtype needs to know what fonts are being used. Thanks to dfc for the patch.
* Changed style names in reference docx.John MacFarlane2013-02-26
| | | | | | | | | | | FootnoteReference -> FootnoteRef. Hyperlink -> Link. Why? Because the old names got changed by Word when the reference.docx was edited. I don't understand why, but this fixes things. Closes #414.
* Added PDF to content types in reference.docx.John MacFarlane2013-02-23
|
* reference.docx: Added default content type for emf.John MacFarlane2013-02-23
|
* Small spacing change in context template.John MacFarlane2013-02-20
|
* ConTeXt template: Use `\placecontent` for toc.John MacFarlane2013-02-20
| | | | Configure it for toc depth. Thanks to Aditya Mahajan.
* ConTeXt writer: Removed `\placecontent`.John MacFarlane2013-02-19
| | | | This produced a duplicate toc, in conjunction with `\placelist`.
* LaTeX template: set secnumdepth to 5 if `--number-sections` specified.John MacFarlane2013-02-18
| | | | | | | This yields behavior equivalent to the other writers, numbering level 4 and 5 headers too. Closes #753.
* Beamer template: Lines to fix captions with longtable.John MacFarlane2013-02-03
| | | | Thanks to Joost Kremers.
* LaTeX template: Use `\urlstyle{same}` to avoid monospace URLs.John MacFarlane2013-01-21
|
* Updated templates.John MacFarlane2013-01-19
| | | | Use upquote package if it exists.
* RTF writer: Added writeRTFWithEmbeddedImages.John MacFarlane2013-01-18
| | | | | | | * RTF writer: Export writeRTFWithEmbeddedImages instead of rtfEmbedImage. * Text.Pandoc: Use writeRTFWithEmbeddedImages for RTF. * Moved code for embedding images in RTF out of pandoc.hs.
* Added `writerHtmlQTags` and `--html-q-tags` option.John MacFarlane2013-01-15
| | | | | | | | | | 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.
* reference.docx: PictureCaption style -> ImageCaption.John MacFarlane2013-01-06
| | | | | This was a typo originally. Thanks to Huashan Chen.
* Docx writer: Use separate footnotes.xml for notes.John MacFarlane2013-01-06
| | | | | | | | | | | | | This seems to help LibreOffice convert the file, even though it was valid docx before. Note that the references in notes must be in word/_rels/footnotes.xml.rel. We handle this now by simply making that file contain all the references in word/_rels/document.xml.rel. Something better could be done eventually, but this works. Closes #637.
* Implemented --toc-depth (and --toc!) for RTF writer.John MacFarlane2013-01-05
|
* Support --toc-depth in context writer.John MacFarlane2013-01-05
|
* Epub CSS: left-align headers by default.John MacFarlane2013-01-05
| | | | This is more consistent with the rest of the writers.
* Changed --toc-level to --toc-depth.John MacFarlane2013-01-05
|
* Implemented --toc-level for rst.John MacFarlane2013-01-05
|
* Implemented --toc-level in LaTeX writer.John MacFarlane2013-01-05
|
* Added css to preserve spaces in <code> tags.John MacFarlane2013-01-04
| | | | Thanks to Dirk Laurie.
* Moved all data files and templates to data/.John MacFarlane2012-12-29
|
* Added --mathml option; removed Text.Pandoc.LaTeXMathML.fiddlosopher2010-03-18
| | | | | | | | | | | * Added data/MathMLinHTML.js, which is included when no URL is provided for --mathml. This allows MathML to be displayed in better browsers, as text/html. * The module was no longer necessary; its functionality (two lines) was incorporated into pandoc.hs. * Consolidated the two LaTeXMathML.js files into one. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1909 788f1e2b-df1e-0410-8736-df70ead52e1b
* Moved data/ui -> s5. Added note on this in README.fiddlosopher2010-01-01
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1763 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added --reference-odt option.fiddlosopher2009-12-31
| | | | | | | | | | | This allows the user to customized the styles used in pandoc-generated ODTs. The user may also put a default reference.odt in the ~/.pandoc directory. We have removed the old data/odt directory and replaced it with a reference.odt. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1760 788f1e2b-df1e-0410-8736-df70ead52e1b
* Removed old data/templates directory.fiddlosopher2009-12-31
| | | | | | Templates are now in templates/. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1758 788f1e2b-df1e-0410-8736-df70ead52e1b
* Indented and line-broke styles.xml so it can be modified more easily.fiddlosopher2009-12-31
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1732 788f1e2b-df1e-0410-8736-df70ead52e1b
* Added newline at end of LaTeXMathML script.fiddlosopher2009-12-31
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1710 788f1e2b-df1e-0410-8736-df70ead52e1b
* Moved odt-styles -> odt. Changed ODT module to look at user data first.fiddlosopher2009-12-31
| | | | | | | So if the user has an odt-styles directory in ~/.pandoc, it will be used instead of the default. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1694 788f1e2b-df1e-0410-8736-df70ead52e1b
* Add legacy-header to LaTeX template.fiddlosopher2009-12-31
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1680 788f1e2b-df1e-0410-8736-df70ead52e1b
* Renamed headers -> templates.fiddlosopher2009-12-31
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1677 788f1e2b-df1e-0410-8736-df70ead52e1b
* LaTeX header: fixes for xetex and header-includes.fiddlosopher2009-12-31
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1676 788f1e2b-df1e-0410-8736-df70ead52e1b
* Revised LaTeX writer to use templates.fiddlosopher2009-12-31
| | | | git-svn-id: https://pandoc.googlecode.com/svn/trunk@1675 788f1e2b-df1e-0410-8736-df70ead52e1b