aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-12-29Unescape entities in citation refId.John MacFarlane1-1/+20
Closes #357. The refIds coming from citeproc contain XML numeric entities, and these don't match with the citation keys parsed by pandoc. Solution is to unescape them.
2011-12-29Unicode reference ID in biblio test.John MacFarlane2-5/+5
2011-12-29Updated tests for changes to HTML note back references.John MacFarlane1-5/+5
2011-12-29Merge pull request #366 from gridaphobe/masterJohn MacFarlane1-2/+1
Use Link instead of RawInline for reference backlinks
2011-12-29DZSlides: Added dzslides/template.html.John MacFarlane4-13/+537
This is the unaltered file from the dzslides repository. Pandoc now reads it, looking for the core part, and includes this in the new dzslides template via the 'dzslides-core' variable. When dzslides is updated, you can just put the new template.html in your `~/.pandoc/dzslides` directory, and things should work -- provided the core part can be identified as everything from <!-- {{{{ dzslides core to the end of the file. This should make it a bit easier to keep up to date.
2011-12-29Made `--version` informative about versions of dependencies.John MacFarlane1-2/+3
2011-12-29Better formatting for list of highlighting languages.John MacFarlane1-1/+1
2011-12-29Added "beamer" a few places where we test for latex.John MacFarlane1-2/+3
2011-12-29Don't use `--smart` automatically with `man` output.John MacFarlane1-1/+1
Previously pandoc used smart mode automatically when `man` output was selected.
2011-12-29Better formatting of input/output formats in `--help`.John MacFarlane1-7/+7
2011-12-29Made `html5` and `html5+lhs` output formats.John MacFarlane3-22/+31
Deprecated the `--html5`/`-5` flag. Use the output format instead.
2011-12-29Added 'beamer' as an output format.John MacFarlane10-47/+127
Beamer output uses the default LaTeX template, with some customizations via variables. Added `writerBeamer` to `WriterOptions`. Added `--beamer` option to `markdown2pdf`.
2011-12-28Preserve attributes in highlighted HTML.John MacFarlane4-5/+8
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-28EPUB: Correctly handle internal links.John MacFarlane1-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-27Made `--highlight-style` and `--no-highlight` work in markdown2pdf.John MacFarlane1-0/+1
2011-12-27Added `--highlight-style` and `--no-highlight` options.John MacFarlane6-15/+67
2011-12-27Highlighting: Add language as class name.John MacFarlane3-3/+3
This restores behavior of 1.8.2.1. Adjusted tests.
2011-12-27Updated tests.John MacFarlane4-73/+80
2011-12-27Updated templates; changes for new highlighting-kate.John MacFarlane1-5/+7
2011-12-27Replaced Apostrophe, Ellipses, EmDash, EnDash w/ unicode strings.John MacFarlane29-277/+231
2011-12-27LaTeX reader: Return Str instead of Apostrophe.John MacFarlane1-1/+1
2011-12-27Markdown reader: Improved previous patch to allow unicode apostrophe.John MacFarlane1-1/+2
2011-12-27Pretty: return Str with unicode instead of Apostrophe.John MacFarlane1-1/+1
2011-12-26EPUB writer: Make external (absolute) links active.John MacFarlane1-2/+2
2011-12-26Modified str parser to capture apostrophes in smart mode.John MacFarlane1-2/+9
This solves a problem stemming from the fact that a parser doesn't know what came *before* in the input stream. Previously pandoc would parse D'oh l'*aide* as containing a single quoted "oh l", when both `'`s should be apostrophes. (Issue #360.) There are two issues here. (a) It is obvious that the first `'` is not an open quote, becaues of the preceding `D`. This patch solves the problem. (b) It is obvious to us that the second `'` is not an open quote, because we see that *aide* is some text. But getting a good algorithm that has good performance is a bit tricky. You can't assume that `'` followed by `*` is always an apostrophe: *'this is quoted'* This patch does not fix (b).
2011-12-26Added some failing test cases for apostrophes in French.John MacFarlane1-0/+6
2011-12-26Updated highlighting for highlighting-kate 0.4.John MacFarlane4-56/+48
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-24change reference backlink from RawInline to Link so it gets rendered ↵Eric Seidel1-2/+1
properly when using the xmlhtml package
2011-12-23LaTeX writer: Support highlighting for inline code.John MacFarlane1-8/+18
2011-12-23LaTeX writer: Have LHS files set the "listings" variable.John MacFarlane2-6/+6
2011-12-23LaTeX writer: Implemented syntax highlighting for CodeBlocks.John MacFarlane3-75/+90
2011-12-22Updated 'Tested-With' field.John MacFarlane1-1/+1
2011-12-22Merge pull request #364 from aslatter/masterJohn MacFarlane1-5/+5
Update package description for GHC 7.4
2011-12-22tests: update package description to build with GHC 7.4Antoine Latter1-1/+1
2011-12-22Update build depends for GHC 7.4Antoine Latter1-4/+4
2011-12-22Removed highlighting flag. Highlighting support is now standard.John MacFarlane8-110/+10
2011-12-22Added writerHighlight to WriterOptions.John MacFarlane2-1/+4
2011-12-22Removed writerAscii in WriterOptions.John MacFarlane1-2/+0
No longer needed or used.
2011-12-22Changed types of highlighting functions.John MacFarlane2-16/+16
* highlightLaTeX, highlightHtml now return Maybe, not Either. * This is because h-k's higdlightAs no longer returns an Either.
2011-12-20Updated s5 tests.John MacFarlane2-6/+6
2011-12-20S5 template: Added titleslide class to title slide.John MacFarlane1-7/+5
2011-12-20Added a newline at end of footnotes ol.John MacFarlane1-1/+1
2011-12-20Restore xhtml style self-closed tags in HTML writer.John MacFarlane2-11/+11
This requires blaze-html >= 0.4.3.0.
2011-12-19Setup: Making man pages now works with cabal-dev.John MacFarlane1-8/+24
In Setup.hs we now invoke 'runghc' in a way that points it to the correct package databases, instead of always falling back to the default user package db. Thanks to Antoine Latter for the patch.
2011-12-19Added highlightLaTeX stub when not compiled w/ highlighting.John MacFarlane1-0/+3
2011-12-19Added highlightLaTeX to Text.Pandoc.Highlighting.John MacFarlane1-11/+29
2011-12-18HTML writer: Put classes "section" and "level[1-6]" on section divs.John MacFarlane1-6/+6
(In HTML 5, the "section" class is omitted, since the tag itself is "section.")
2011-12-18EPUB: Added customizable templates for epub pages.John MacFarlane3-54/+22
epub-page.html, epub-coverimage.html, epub-titlepage.html.
2011-12-18HTML writer: Retain ID attribute in highlighted code blocks.John MacFarlane1-2/+5
2011-12-18Highlighting: Use reads instead of read.John MacFarlane1-3/+5
Fixes crash on startNum="abc".