Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-01-11 | HTML writer: Don't use self-closing img, br, hr tags. | John MacFarlane | 1 | -7/+12 | |
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-29 | Merge pull request #366 from gridaphobe/master | John MacFarlane | 1 | -2/+1 | |
Use Link instead of RawInline for reference backlinks | |||||
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-27 | Added `--highlight-style` and `--no-highlight` options. | John MacFarlane | 1 | -2/+3 | |
2011-12-27 | Replaced Apostrophe, Ellipses, EmDash, EnDash w/ unicode strings. | John MacFarlane | 1 | -4/+0 | |
2011-12-26 | Updated highlighting for highlighting-kate 0.4. | John MacFarlane | 1 | -10/+16 | |
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-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 | 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 | |
2011-12-17 | Use blaze-html instead of xhtml for HTML generation. | John MacFarlane | 1 | -204/+213 | |
* This is a breaking API change for `writeHtml`. * It introduces a new dependency on blaze-html. * Pandoc now depends on highlighting-kate >= 0.4, which also uses blaze-html. * The --ascii option has been removed, because of differences in blaze-html's and xhtml's escaping. * Pandoc will no longer transform leading newlines in code blocks to `<br/>` tags. | |||||
2011-12-04 | WebTeX math - use 'vertical-align:middle' for better results. | John MacFarlane | 1 | -1/+2 | |
2011-11-29 | S5/slidy writer: Make footnotes appear on separate slide at end. | John MacFarlane | 1 | -1/+3 | |
2011-11-29 | Use separate variables for meta-date, meta-author. | John MacFarlane | 1 | -7/+8 | |
This makes footnotes work in author and date fields. Closes #301. | |||||
2011-11-29 | HTML writer: Put citations in span with class="citation". | John MacFarlane | 1 | -1/+2 | |
See #313. | |||||
2011-11-20 | HTML writer: change s5-url to s5/default. | John MacFarlane | 1 | -1/+1 | |
2011-11-07 | HTML writer: Use `<section>` for footnotes if html5. | John MacFarlane | 1 | -2/+4 | |
2011-10-02 | HTML slides: only add id to div/section if --section-divs selected. | John MacFarlane | 1 | -6/+5 | |
2011-10-02 | Simplified slide creation in HTML writer. | John MacFarlane | 1 | -26/+18 | |
A horizontal rule now gets transformed into an empty H1 header before 'hierarchicalize' is called. If the document that does not begin with an H1 header, an empty one is provided. This avoids the need for kludgy raw HTML. Also, the 'titleslide' class is added to any section containing just a title: ---- ---- | |||||
2011-10-01 | Added dzslides output option. | John MacFarlane | 1 | -3/+9 | |
* Added DZSlides to HTMLSlideVariant. * Added support for dzslides in HTML writer. * Added dzslides template. | |||||
2011-07-28 | Added s5-url and slidy-url variables, instead of hard-coding. | John MacFarlane | 1 | -1/+2 | |
If you want to put your slidy files in the slidy subdirectory, for example, you can do pandoc -t slidy -V slidy-url=slidy -s | |||||
2011-07-24 | HTML writer: Removed English title on footnote back links. | John MacFarlane | 1 | -2/+1 | |
This is incongruous in non-English documents. | |||||
2011-07-24 | Insert CDATA around inline js/css in HTML, slidy. | John MacFarlane | 1 | -1/+2 | |
2011-07-23 | HTML writer/templates: Made TOC more customizable. | John MacFarlane | 1 | -9/+4 | |
The container for the TOC is now in the template, so users can insert a header or other styling. Thanks to Bruce D'Arcus for the suggestion. | |||||
2011-07-16 | HTML writer: Use embed tag for images with non-image extensions. | John MacFarlane | 1 | -1/+20 | |
(e.g. PDFs). Closes #264. | |||||
2011-07-06 | Fixed bug in slidy writer: unclosed div tag. | John MacFarlane | 1 | -1/+1 | |
2011-04-16 | Fixed Slidy/S5 output to allow --section-divs. | John MacFarlane | 1 | -30/+27 | |
This is also a cleaner way of inserting the slide divs. Resolves Issue #296. | |||||
2011-04-16 | Whitespace cleanup. | John MacFarlane | 1 | -45/+44 | |
2011-04-16 | Allow --section-divs with slidy output. | John MacFarlane | 1 | -10/+10 | |
2011-03-28 | Fixed bug in footnote order in HTML. | John MacFarlane | 1 | -1/+1 | |
CircleCode pointed out that the following markdown produces out-of-order footnote markers in HTML: -8<------------------------ some text^[with a footnote which will be #1] issue some other text^[with a footnote which will be #2] -8<------------------------ This fixes the problem. | |||||
2011-02-06 | Revert "Use us-ascii charset in HTML template if --ascii option." | John MacFarlane | 1 | -1/+0 | |
This reverts commit aec54899606bed2580394baa1369e58ede20fde8. No need for this, since a UTF-8 charset will handle ascii just fine. | |||||
2011-02-06 | HTML writer: Fixed footnote backrefs in --ascii mode. | John MacFarlane | 1 | -1/+2 | |
2011-02-06 | Use us-ascii charset in HTML template if --ascii option. | John MacFarlane | 1 | -0/+1 | |
2011-02-06 | Added --ascii option. | John MacFarlane | 1 | -17/+20 | |
Currently supported only in HTML writer. | |||||
2011-02-05 | HTML writer: Put line breaks in section divs. | John MacFarlane | 1 | -2/+4 | |
2011-02-05 | HTML writer: stringify alt text. | John MacFarlane | 1 | -2/+1 | |
Previously, if you had formatting in the label of an Image element, you'd get escaped HTML in the alt attribute. Now you just get a plain string version, which seems preferable. | |||||
2011-02-04 | Improved HTML table output (line breaks). | John MacFarlane | 1 | -9/+17 | |
2011-02-04 | More changes to HTML output. | John MacFarlane | 1 | -25/+23 | |
Removed blank lines. More consistent format. | |||||
2011-02-04 | HTML writer: Spacing adjustments for Plain and RawHtml blocks. | John MacFarlane | 1 | -0/+2 | |
2011-02-04 | Improved new HTML format; restored original --no-wrap behavior. | John MacFarlane | 1 | -52/+76 | |
2011-02-04 | HTML writer: More normal line breaks. | John MacFarlane | 1 | -25/+29 | |
Also removes any distinction between --no-wrap and default HTML output. Resolves Issue #134. | |||||
2011-01-29 | HTML writer: avoid doubled <code> tag for highlighted inline code. | John MacFarlane | 1 | -4/+5 | |
2011-01-29 | Fixed highlighting for inline code. | John MacFarlane | 1 | -2/+2 | |
highlightHtml in Highlighting now has a boolean argument that selects between inline and block content. Revised tests for new highlighting-kate. | |||||
2011-01-26 | Add support for attributes in inline Code. | John MacFarlane | 1 | -5/+12 | |
Additional related changes: * URLs in Code in autolinks now use class "url". * Require highlighting-kate 0.2.8.2, which omits the final <br/> tag, essential for inline code. | |||||
2011-01-26 | Bumped version to 1.8; depend on pandoc-types 1.8. | John MacFarlane | 1 | -9/+11 | |
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. |