Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-03-03 | EPUB writer: Use extensible exceptions. | John MacFarlane | 1 | -1/+3 | |
2012-02-05 | Normalize date in EPUB metadata. | John MacFarlane | 1 | -1/+1 | |
2012-01-30 | Added `--epub-embed-font` option. | John MacFarlane | 1 | -5/+23 | |
* 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-28 | Remove dependency on old-time. | John MacFarlane | 1 | -2/+2 | |
2012-01-13 | EPUB writer: Allow raw HTML. | John MacFarlane | 1 | -6/+1 | |
2012-01-01 | EPUB writer: Allow `lang` variable to set language in metadata. | John MacFarlane | 1 | -2/+5 | |
Defaults to locale language if `lang` is not set. | |||||
2011-12-30 | EPUB: Get correct environment variable for LANG. | John MacFarlane | 1 | -1/+1 | |
This should fix `<dc:language>` problems. | |||||
2011-12-28 | EPUB: Correctly handle internal links. | John MacFarlane | 1 | -6/+55 | |
Previously they were ignored. Now all links are preserved, but purely internal links are modified so that they point to the proper place in the EPUB. This is nontrivial, since the heading you refer to in your markdown source with 'my-section-1' might end up as 'ch16.xhtml#my-section' in the EPUB. Closes #76. | |||||
2011-12-26 | EPUB writer: Make external (absolute) links active. | John MacFarlane | 1 | -2/+2 | |
2011-12-18 | EPUB: Added customizable templates for epub pages. | John MacFarlane | 1 | -46/+13 | |
epub-page.html, epub-coverimage.html, epub-titlepage.html. | |||||
2011-12-13 | EPUB: Don't use any decimal entities. | John MacFarlane | 1 | -2/+2 | |
kindlegen doesn't like them - even '. It should be safe to use the unescaped ' character, since we know that all attributes are double quoted in the relevant files. | |||||
2011-12-12 | EPUB writer: made unEntity handle errors better. | John MacFarlane | 1 | -6/+3 | |
2011-12-12 | Fixed previous patch so it doesn't swallow a character! | John MacFarlane | 1 | -7/+10 | |
2011-12-12 | EPUB: Use UTF-8 rather than decimal entities. | John MacFarlane | 1 | -2/+12 | |
This addresses a problem with kindlegen pointed out by Axel Kielhorn. | |||||
2011-11-12 | Add date to EPUB titlepage and metadata. | John MacFarlane | 1 | -3/+8 | |
Closes #323. Thanks to Ralf Stephan for the patch (slightly modified). | |||||
2011-10-27 | Don't generate superfluous file `cover-image.jpg`. | John MacFarlane | 1 | -2/+0 | |
Closes #319. | |||||
2011-10-27 | Added TOC identifier in EPUB page template. | John MacFarlane | 1 | -0/+2 | |
Closes #329. | |||||
2011-07-16 | Un-URI-escape image filenames in LaTeX, ConTeXt, RTF, Texinfo. | John MacFarlane | 1 | -2/+4 | |
Also do this when copying image files into EPUBs and ODTs. Closes #263. | |||||
2011-07-04 | EPUB writer: Add a meta element specify the cover. | Kelsey Hightower | 1 | -4/+6 | |
Some EPUB e-readers, such as the Nook, require a meta element inside the OPF metadata block to ensure the cover image is properly displayed. When generating an EPUB using the `--epub-cover-image` option, this patch adds the following meta element to the OPF metadata block in `content.opf`: <meta name="cover" content="cover-image" /> | |||||
2011-04-29 | Allow non-plain math methods in epub. | John MacFarlane | 1 | -2/+1 | |
2011-04-16 | Revert API change in EPUB writer. | John MacFarlane | 1 | -3/+3 | |
Instead of passing the epub cover image as a parameter, we now pass it in the list of variables. This avoids the API change introduced in f5cbb68534c52b292c57aaf741ab94442ddadd7a without losing the new functionality. | |||||
2011-03-13 | Added --epub-cover-image option. | John MacFarlane | 1 | -9/+44 | |
API change: Added a parameter for the cover image path to writeEPUB. Followed best practices outlined in http://blog.threepress.org/2009/11/20/best-practices-in-epub-cover-images/ | |||||
2011-02-06 | Make --toc work in epub output. | John MacFarlane | 1 | -0/+3 | |
2011-01-26 | Bumped version to 1.8; depend on pandoc-types 1.8. | John MacFarlane | 1 | -3/+3 | |
The old TeX, HtmlInline and RawHtml elements have been removed and replaced by generic RawInline and RawBlock elements. All modules updated to use the new raw elements. | |||||
2010-12-24 | Use functions from Text.Pandoc.Generic instead of processWith(M). | John MacFarlane | 1 | -1/+2 | |
2010-07-09 | Cleaned up EPUB writer. | John MacFarlane | 1 | -33/+43 | |
2010-07-08 | EPUB writer: don't put multiple copies of same image in epub. | John MacFarlane | 1 | -10/+17 | |
2010-07-08 | Get default stylesheet in EPUB writer, rather than pandoc.hs. | John MacFarlane | 1 | -2/+5 | |
2010-07-08 | Added writerSourceDirectory to WriterOptions. | John MacFarlane | 1 | -3/+3 | |
This allows us to remove an argument from the ODT and EPUB writers. | |||||
2010-07-05 | Made -Wall clean. | John MacFarlane | 1 | -1/+1 | |
2010-07-05 | Removed links (internal and external). | John MacFarlane | 1 | -15/+17 | |
2010-07-05 | Process user-supplied EPUB metadata. | John MacFarlane | 1 | -7/+21 | |
Read a sequence of elements from the file. Ignore anything that's not valid Dublin Core. If title, language, uuid not supplied, supply them. | |||||
2010-07-05 | Added an EPUB writer. | John MacFarlane | 1 | -0/+247 | |
+ New writer module Text.Pandoc.Writers.EPUB + Stylesheet in epub.css + --epub-stylesheet command-line option. + New utility module Text.Pandoc.UUID to generate random UUIDs for EPUBs. |