aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-02-09windows installer: UI with license, etc.John MacFarlane2-6/+13
2013-02-09Converted COPYING to markdown.John MacFarlane1-40/+42
2013-02-09Fixed make-windows-installer to use double quotes for path.John MacFarlane1-3/+6
2013-02-09Removed Inno setup config files.John MacFarlane2-245/+0
2013-02-09make-windows-installer.bat: Use WiX instead of Inno.John MacFarlane1-1/+3
2013-02-09Added pandoc.wxs: definition file for WiX msi generator.John MacFarlane1-0/+37
2013-02-09make_osx_package.sh: Added step to check validity of signature.John MacFarlane1-0/+4
2013-02-09Added needed sudo to osx package signing.John MacFarlane1-1/+1
2013-02-09Version to 1.10.1.1 since we no longer have API change.John MacFarlane1-1/+1
2013-02-09Revert "Hide module Text.Pandoc.Parsing."John MacFarlane1-1/+1
This reverts commit 18a5c9a8bf071398f3976a7c2c255638e135de7c. We want to do this eventually, but as it requires a major version bump, let's wait til later.
2013-02-09Added code signing to make_oxs_package.sh.John MacFarlane1-1/+9
2013-02-09Updated RELEASE-CHECKLIST.John MacFarlane1-6/+6
2013-02-08UTF8: Strip off BOM if present.John MacFarlane1-2/+9
Closes #743.
2013-02-07Changes to --version.John MacFarlane2-3/+5
Print default user data directory. Put language names in lowercase and omit 'alert' and 'alert_indent'.
2013-02-07Changes to --version.John MacFarlane1-3/+6
Print default user data directory. Put language names in lowercase and omit 'alert' and 'alert_indent'.
2013-02-07README: List proper default data directory for Windows 7.John MacFarlane1-4/+12
2013-02-06Revert "Citation changes."John MacFarlane2-17/+9
This reverts commit d46f434d4b8906ae3b983e568549213de94fd1a2.
2013-02-06Implement `--default-image-extension` for LaTeX reader.John MacFarlane2-5/+14
2013-02-05Merge branch 'citations'John MacFarlane2-9/+17
2013-02-05Added `--default-image-extension` and `readerDefaultImageExtension`.John MacFarlane4-112/+134
Note: Currently this only affects the markdown reader.
2013-02-05Revert "Hide module Text.Pandoc.Highlighting."John MacFarlane1-1/+1
This reverts commit 01753ead71f6a08929f1535fcb497ff6d6015289. We need it after all in pandoc.hs.
2013-02-05Version bump to 1.11 due to API changes.John MacFarlane1-1/+1
2013-02-05Hide module Text.Pandoc.Highlighting.John MacFarlane1-1/+1
This is really an auxiliary module.
2013-02-05Hide module Text.Pandoc.Parsing.John MacFarlane1-1/+1
2013-02-03Beamer template: Lines to fix captions with longtable.John MacFarlane1-5/+7
Thanks to Joost Kremers.
2013-02-03Citation changes.John MacFarlane2-9/+17
* Citations will work in markdown even if `--biblio` isn't specified. Note: this may cause unexpected behavior for people who use strings of the form `@foo` that are not citations! * If `--biblio` isn't used, the markdown writer will write markdown citations rather than CSL-rendered citations. * This means, for example, that you can do `pandoc -f latex -t markdown` and convert biblatex or natbib citations into pandoc citations.
2013-02-02Removed unneeded blanklines in pipeTable parser.John MacFarlane1-1/+0
2013-02-02Optimized oneOfStringsCI.John MacFarlane1-3/+9
The call to toLower in ciMatch was very expensive (and very often used), because toLower from Data.Char calls a fully unicode aware function. This optimization avoids the call to toLower for the most common, ASCII cases. This dramatically reduces the speed penalty that comes from enabling the `autolink_bare_uris` extension. The penalty is still substantial (in one test, from 0.33s to 0.44s), but nowhere near what it used to be.
2013-01-30HTML reader: Handle colgroup tag.John MacFarlane1-1/+2
2013-01-28Updated changelog.John MacFarlane1-11/+14
2013-01-28DocBook writer: for linebreak, but newline in literallayout.John MacFarlane2-2/+3
Closes #725.
2013-01-28Updated changelog.John MacFarlane1-0/+47
2013-01-28Version bump to 1.10.1.John MacFarlane2-2/+2
2013-01-28Fixed latex macro parsing.John MacFarlane3-6/+6
Now latex macro definitions are preserved when output is latex, and applied when it is another format, as originally intended. Partially addresses #730. \providecommand is still not supported. For this we need changes to texmath.
2013-01-28Updated latex table tests.John MacFarlane1-7/+7
2013-01-28LaTeX writer: Avoid extra space at start/end of table cell.John MacFarlane1-1/+3
Thanks to Nick Bart for the suggestion of using @{}.
2013-01-28Markdown writer: Set title, author, date variables as before.John MacFarlane1-0/+3
These are no longer used in the default template, since we use titleblock, but we set them anyway for nondefault template users.
2013-01-28Merge pull request #733 from jrunningen/masterJohn MacFarlane3-1/+8
Mediawiki reader: Don't require blanklines after tables.
2013-01-27Markdown/RST reader: Skip blank lines.John MacFarlane4-5/+20
This fixes a subtle regression involving grid tables with empty cells. Closes #732. Also added test for grid table with empty cells.
2013-01-27Mediawiki reader: Don't require blanklines after tables.Jeff Runningen3-1/+8
2013-01-26RST writer: Use `.. code:: language` for code blocks with language.John MacFarlane11-20/+25
Closes #721. Also fixed whitespace in lhs tests.
2013-01-26Markdown writer: Use autolink when link text matches url.John MacFarlane1-3/+3
Previously we also checked for a null title, but this test fails for links produced by citeproc-hs in bibliographies. So, if the link has a title, it will be lost on conversion to an autolink, but that seems okay.
2013-01-26Removed hsmarkdown.John MacFarlane1-5/+0
2013-01-25Markdown reader: Simplified and sped up str parser.John MacFarlane1-15/+9
We no longer needed the smart quote complexity, because of improvements to singleQuoteStart and singleQuoteEnd. And we were able to move the check for intraword underscore to the emphasis parser.
2013-01-25RST reader: Allow anonymous form of explicit links.John MacFarlane1-0/+1
`hello <url>`__ Closes #724.
2013-01-25Changed copyright date range on Markdown reader.John MacFarlane1-1/+1
2013-01-25Minor code cleanup.John MacFarlane1-7/+6
2013-01-25Markdown reader: Moved guardEnabled to definitionList.John MacFarlane1-1/+1
From definitionListItem. Slight performance improvement.
2013-01-25Markdown reader: Performance improvement in str parser.John MacFarlane1-3/+6
Moved a guardEnabled out of an inner loop.
2013-01-25Use anyLine everywhere instead of 'manyTill anyChar newline'.John MacFarlane3-11/+11