aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-11-21Slight modification of --self-contained documentation.John MacFarlane1-9/+9
2011-11-21Documented `--self-contained` and modified documentation for `--offline`.John MacFarlane1-9/+20
2011-11-21Version bump to 1.9.John MacFarlane1-1/+1
We need to increment the second digit, since we removed an entire module (S5) from the API.
2011-11-21Removed Text.Pandoc.S5 -- no longer needed.John MacFarlane2-70/+0
2011-11-21Added --self-contained, integrated into src/pandoc.hs.John MacFarlane1-26/+24
--offline is now a deprecated synonym for --self-contained. TODO: Documentation, remove old S5 module.
2011-11-21Changed Offline module to SelfContained, offline to makeSelfContained.John MacFarlane2-6/+13
2011-11-21Added userdata directory parameter to fns in Offline.John MacFarlane1-31/+32
2011-11-20Added missing s5 files to data-files in pandoc.cabal.John MacFarlane1-0/+3
2011-11-20Offline: Look for relative URLs in data directory if not found.John MacFarlane1-1/+13
2011-11-20HTML writer: change s5-url to s5/default.John MacFarlane1-1/+1
2011-11-20Depend on zlib (for Offline).John MacFarlane1-2/+4
2011-11-20Offline: Recursively resolve @imports in css files.John MacFarlane1-12/+35
2011-11-19Converted Offline to use Tag String.John MacFarlane1-21/+18
2011-11-19Added Text.Pandoc.Offline module.John MacFarlane2-2/+242
2011-11-18AsciiDoc: Don't use Roman numerals in ordered lists.John MacFarlane2-9/+13
AsiiDoc doesn't support them.
2011-11-18Renamed to AsciiDoc. Fixed display math and escapes.John MacFarlane4-126/+126
AsciiDoc does not seem to have consistent escaping rules.
2011-11-18Spelling correction.John MacFarlane1-1/+1
2011-11-18Added asciidoc output to README.John MacFarlane1-3/+8
2011-11-18Merge branch 'asciidoc'John MacFarlane9-9/+1125
2011-11-18Updated tests for correct col width.John MacFarlane2-19/+18
2011-11-18Updated asciidoc test.John MacFarlane1-326/+229
The test output still contains some mistakes.
2011-11-18Skip raw HTML blocks in asciidoc.John MacFarlane1-2/+0
2011-11-18Fixed continuations in asciidoc definition lists.John MacFarlane1-5/+13
2011-11-18Removed link title in asciidoc.John MacFarlane1-9/+6
Apparently it is not supported.
2011-11-18Ensure blank line before html passthrough.John MacFarlane1-1/+1
2011-11-18Implemented ordered lists in asciidoc.John MacFarlane1-7/+14
2011-11-18Implemented bullet lists in asciidoc writer.John MacFarlane1-21/+18
2011-11-18Added fields to track list levels.John MacFarlane1-2/+8
2011-11-18Updated ieee.csl and mhra.csl in test directory.John MacFarlane2-504/+686
2011-11-18Updated chicago-author-date.csl.John MacFarlane2-359/+405
The old version did not work properly for edited volumes with no author.
2011-11-18Added comment about limitations of asciidoc conversion.John MacFarlane1-0/+6
2011-11-18Supported tables in asciidoc, added table tests.John MacFarlane2-40/+124
2011-11-18Pretty: Added chomp combinator.John MacFarlane1-0/+13
2011-11-17Indicate when a multiblock footnote is omitted.John MacFarlane1-1/+1
2011-11-17Supported definition lists.John MacFarlane1-10/+13
2011-11-17Use attributes for author/date.John MacFarlane2-6/+6
2011-11-16Updated templates.John MacFarlane1-5/+5
2011-11-16Added an asciidoc writer (partial).John MacFarlane7-4/+1099
Still TODO: - documentation in README - add default.asciidoc to templates/ - lists - tables - proper escaping - footnotes with blank lines - print separately at end? currently they are just ignored. - fix header (date gives weird result on pandoc README)
2011-11-12Updated writer tests for new version of texmath.John MacFarlane5-20/+25
2011-11-12LaTeX reader: Don't crash on commands like `\itemsep`.John MacFarlane1-1/+2
Closes #314.
2011-11-12LaTeX reader: Ignore empty groups {}, { }.John MacFarlane1-0/+8
Closes #322.
2011-11-12Add date to EPUB titlepage and metadata.John MacFarlane1-3/+8
Closes #323. Thanks to Ralf Stephan for the patch (slightly modified).
2011-11-11Implemented --citation-abbreviations option.John MacFarlane3-6/+36
Mostly due to Andrea Rossato.
2011-11-10Changed misleading documentation on markdown2pdf.John MacFarlane2-3/+2
markdown2pdf used to create a backup file if the output file exists; it doesn't any longer, but the documentation still said it does.
2011-11-10markdown2pdf: Use proper temp directory for latex processing.John MacFarlane1-9/+16
Previously /tmp/pandoc was used, which was problematic for several reasons. Closes #339.
2011-11-09Require citeproc-hs >= 0.3.4.John MacFarlane1-2/+2
2011-11-09Markdown citations: don't strip off initial space in locator.John MacFarlane3-3/+7
Previously `[@item1 and nowhere else]` yielded the locator ", and nowhere else", or, with the new citeproc-hs, "and nowhere else". Now it yields " and nowhere else".
2011-11-09Fixed markdown-citations.ieee.txt to use em-dashes for citation ranges.John MacFarlane1-1/+1
This is a new feature in citeproc-hs.
2011-11-08TeXMath writer: Use unicode thin spaces for thin spaces.John MacFarlane1-1/+7
Partially resolves issue #333.
2011-11-08Update templates to use Content-Style-Type meta tag.John MacFarlane9-5/+13
Closes #337.