aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/MIME.hs
AgeCommit message (Collapse)AuthorFilesLines
2013-07-20PDF generation improvements.John MacFarlane1-2/+9
* `Text.Pandoc.PDF` exports `makePDF` instead of `tex2pdf`. (API change.) * `makePDF` walks the pandoc AST and checks for the existence of images in the local directory. If they are not found, it attempts to find them, either in the directory containing the first source file, or at an absolute URL, or at a URL relative to the base URL of the first command line argument. * Closes #917.
2013-01-17MIME: Support vs and fs as text/plain.John MacFarlane1-0/+2
These are used in revealjs css.
2012-10-11Added MIME types for .wof and .eot.John MacFarlane1-0/+2
Closes #640. i#
2012-07-26Fixed whitespace errors.John MacFarlane1-1/+1
2012-06-28Added webm to mime types. Closes #543.John MacFarlane1-0/+1
2012-01-30Added `--epub-embed-font` option.John MacFarlane1-0/+2
* This can be repeated for multiple fonts. * Added parameter for fonts to embed to writeEPUB. * Added ttf, otf to Mime types in Text.Pandoc.MIME.
2012-01-14Added 'layout-cache' to getMimeType.John MacFarlane1-0/+1
This ensures that the META-INF/manifest.xml for ODT files will have everything it needs. Fixes a bug using modified ODT files as `--reference-odt`.
2011-07-19Added unexported Text.Pandoc.MIME.John MacFarlane1-0/+483
Moved getMimeType from Text.Pandoc.Shared to Text.Pandoc.MIME, so we won't have an API change.