Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-01-23 | LaTeX beamer: Only add [fragile] to slide if it contains verbatim. | John MacFarlane | 1 | -1/+8 | |
Closes #385. | |||||
2012-01-23 | Use Slides in LaTeX writer for beamer. | John MacFarlane | 1 | -29/+17 | |
2012-01-20 | Docx: Put display math on separate line. | John MacFarlane | 1 | -5/+9 | |
2012-01-20 | Docx writer: Fixed styles in footnotes. | John MacFarlane | 1 | -0/+6 | |
Previously a footnote in a list item would be a list item, etc.! | |||||
2012-01-20 | Docx: Adjusted list spacing for less cramped number markers. | John MacFarlane | 1 | -1/+1 | |
2012-01-20 | Docx writer: Start bullet lists with solid bullet. | John MacFarlane | 1 | -6/+7 | |
2012-01-20 | Docx writer: Don't indent first level of lists. | John MacFarlane | 1 | -2/+2 | |
2012-01-20 | Docx writer: Fixed bug with numbered lists. | John MacFarlane | 1 | -24/+37 | |
Numbered lists were being numbered continuously, instead of having new lists start again with 1. | |||||
2012-01-19 | Minor comment fixes. | John MacFarlane | 1 | -2/+0 | |
2012-01-19 | Check for existence before opening image file. | John MacFarlane | 1 | -49/+57 | |
Print warning if file doesn't exist. | |||||
2012-01-19 | Added Docx writer. | John MacFarlane | 1 | -0/+626 | |
* New module `Text.Pandoc.Docx`. * New output format `docx`. * Added reference.docx. * New option `--reference-docx`. The writer includes support for highlighted code blocks and math (which is converted from TeX to OMML using texmath's new OMML module). | |||||
2012-01-15 | ImageSize: extract dpi information from PNG and JPEG. | John MacFarlane | 1 | -5/+4 | |
* ImageSize record now includes dpiX, dpiY, pxX, pxY. * New functions sizeInPixels and sizeInPoints. | |||||
2012-01-14 | ODT writer now sizes images appropriately. | John MacFarlane | 2 | -3/+10 | |
OpenDocument writer: a title like "123x467" is interpreted as size in *points*. ODT writer: while adding images to the archive, computes their sizes and inserts a title attribute with the size before calling opendocument writer. Size is computed as follows: size in points = size in pixels * 96 / 72 | |||||
2012-01-14 | OpenDocument writer: treat image title of form "dddxddd" as size in px. | John MacFarlane | 1 | -3/+14 | |
Later we'll modify the ODT writer to insert such titles, so image sizes will be correct in the ODT. | |||||
2012-01-13 | EPUB writer: Allow raw HTML. | John MacFarlane | 1 | -6/+1 | |
2012-01-11 | HTML writer: Don't use self-closing img, br, hr tags. | John MacFarlane | 1 | -7/+12 | |
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-31 | Support for math in RST reader and writer. | John MacFarlane | 1 | -3/+5 | |
Inline math uses the :math:`...` construct. Display math uses .. math:: ... or if multilin .. math:: ... These seem to be supported now by rst2latex.py. | |||||
2011-12-30 | Support Sphinx-style math in RST writer. | John MacFarlane | 1 | -2/+3 | |
http://sphinx.pocoo.org/latest/ext/math.html | |||||
2011-12-30 | Fixed layout bug in ConTeXt and LaTeX writers. | John MacFarlane | 2 | -4/+4 | |
This was a regression introduced by the recent internal links changes. | |||||
2011-12-30 | LaTeX writer: only use hyperdef on section if there's a link to it. | John MacFarlane | 1 | -27/+34 | |
2011-12-30 | Added support for internal links in ConTeXt writer. | John MacFarlane | 1 | -30/+15 | |
Based on a patch by B. Scott Michel. Also simplified use of \hyphenateurl. We no longer try to go within an Inline list to find URLs. This is resource-heavy, and the main use case is autolinks, which can be readily recognized. | |||||
2011-12-30 | Add support for internal links to LaTeX writer. | John MacFarlane | 1 | -27/+50 | |
Based on a patch by B. Scott Michel. | |||||
2011-12-30 | ConTeXt writer: Add section labels and internal links as in HTML. | B. Scott Michel | 1 | -21/+71 | |
Add the ability to refer to internal links to the ConTeXt writer, just like the HTML writer can. The 'hierarchicalize' function generates unique names for sections, which can be used for references in ConTeXt, just as they can be in HTML. The ConTeXt writer adds these unique identifiers to each \section and does special processing of the Link target to see if it starts with a '#' (hash symbol), which is the tip-off that the link is an internal link. | |||||
2011-12-30 | HTML writer: Better handling of authors in meta tags. | John MacFarlane | 1 | -12/+26 | |
Footnotes and email addresses now come out in a more pleasing way. Modified from a patch by B. Scott Michel. | |||||
2011-12-30 | ConTeXt writer: Made `--toc` work even without `--number-sections`. | John MacFarlane | 1 | -2/+2 | |
2011-12-30 | Small tweaks to hyphenatedurl patch. | John MacFarlane | 1 | -9/+6 | |
Use isURI instead of isAbsoluteURI, as it also matches absolute URIs with '#...' at the end. | |||||
2011-12-30 | ConTeXt_url_hyphenation | B. Scott Michel | 1 | -6/+13 | |
Deeply scan through the [Inline] associated with a Link and ensure that all URLs are hyphenated using SYB primitives. | |||||
2011-12-30 | LaTeX writer: Improved detection of book classes. | John MacFarlane | 1 | -6/+9 | |
We now check the `documentclass` variable, and if that is not set, we look through the template itself. Also, we have added the KOMA classes scrreprt and scrbook. You can now make a book using markdown2pdf -V documentclass:book | |||||
2011-12-30 | EPUB: Get correct environment variable for LANG. | John MacFarlane | 1 | -1/+1 | |
This should fix `<dc:language>` problems. | |||||
2011-12-29 | Merge pull request #366 from gridaphobe/master | John MacFarlane | 1 | -2/+1 | |
Use Link instead of RawInline for reference backlinks | |||||
2011-12-29 | Added 'beamer' as an output format. | John MacFarlane | 1 | -13/+75 | |
Beamer output uses the default LaTeX template, with some customizations via variables. Added `writerBeamer` to `WriterOptions`. Added `--beamer` option to `markdown2pdf`. | |||||
2011-12-28 | Preserve attributes in highlighted HTML. | John MacFarlane | 1 | -2/+4 | |
The container element will have the classes, id, and key-value attributes you specified in the delimited code block. Previously these were stripped off. | |||||
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-27 | Added `--highlight-style` and `--no-highlight` options. | John MacFarlane | 2 | -4/+6 | |
2011-12-27 | Replaced Apostrophe, Ellipses, EmDash, EnDash w/ unicode strings. | John MacFarlane | 14 | -84/+52 | |
2011-12-26 | EPUB writer: Make external (absolute) links active. | John MacFarlane | 1 | -2/+2 | |
2011-12-26 | Updated highlighting for highlighting-kate 0.4. | John MacFarlane | 3 | -16/+24 | |
Text.Pandoc.Highlighting now exports just one new function, 'highlight', and reexports all the other functions from highlighting-kate that are used in the writers. This should make it easy to switch highlighting engines if that is ever desired. | |||||
2011-12-24 | change reference backlink from RawInline to Link so it gets rendered ↵ | Eric Seidel | 1 | -2/+1 | |
properly when using the xmlhtml package | |||||
2011-12-23 | LaTeX writer: Support highlighting for inline code. | John MacFarlane | 1 | -8/+18 | |
2011-12-23 | LaTeX writer: Have LHS files set the "listings" variable. | John MacFarlane | 1 | -1/+1 | |
2011-12-23 | LaTeX writer: Implemented syntax highlighting for CodeBlocks. | John MacFarlane | 1 | -69/+82 | |
2011-12-22 | Changed types of highlighting functions. | John MacFarlane | 1 | -4/+4 | |
* highlightLaTeX, highlightHtml now return Maybe, not Either. * This is because h-k's higdlightAs no longer returns an Either. | |||||
2011-12-20 | Added a newline at end of footnotes ol. | John MacFarlane | 1 | -1/+1 | |
2011-12-20 | Restore xhtml style self-closed tags in HTML writer. | John MacFarlane | 1 | -9/+9 | |
This requires blaze-html >= 0.4.3.0. | |||||
2011-12-18 | HTML writer: Put classes "section" and "level[1-6]" on section divs. | John MacFarlane | 1 | -6/+6 | |
(In HTML 5, the "section" class is omitted, since the tag itself is "section.") | |||||
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-18 | HTML writer: Use `<del>` for strikeout. | John MacFarlane | 1 | -1/+1 | |
2011-12-17 | HTML writer: Don't escape '. | John MacFarlane | 1 | -2/+3 | |
This requires using a custom string escaper. If we use toHtml from Blaze, we get ', which is pointless unless you're writing attributes in single quotes. | |||||
2011-12-17 | Fixed line breaks in tds in table cells. | John MacFarlane | 1 | -1/+1 | |