aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/MIME.hs
AgeCommit message (Collapse)AuthorFilesLines
2014-11-16Changed mime type for otf to application/vnd.ms-opentype.John MacFarlane1-1/+1
Closes #1761. This is needed for epub3 validation. See http://www.idpf.org/epub/20/spec/OPF_2.0.1_draft.htm#Section2.3.1
2014-10-04add mime type for WebVTTJason Ronallo1-0/+1
2014-08-17MIME cleanup.Artyom Kazak1-10/+30
* Create a type synonym for MIME type (instead of `String`). * Add `getMimeTypeDef` function. * Avoid recreating MIME type `Map`s every time. * Move “Formula-...” case handling into `getMimeType`.
2014-05-09Update copyright notices for 2014, add missing noticesAlbert Krewinkel1-2/+2
2014-03-14EPUB writer: Incorporate files linked in <video> tags.John MacFarlane1-0/+1
src and poster will both be incorporated into content.opf and the epub container. This partially address #1170. Still need to do something similar for <audio>.
2014-01-07Added wmf and emf mime types.John MacFarlane1-0/+2
2013-11-30MIME: Add entry for jfif.John MacFarlane1-0/+1
2013-11-19MIME: In looking up extensions, drop the encoding info.John MacFarlane1-1/+2
E.g. for 'image/jpg;base64' we should lookup 'image/jpg'.
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.