summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* make-windows-installer.bat: Use WiX instead of Inno.John MacFarlane2013-02-09
|
* Added pandoc.wxs: definition file for WiX msi generator.John MacFarlane2013-02-09
|
* make_osx_package.sh: Added step to check validity of signature.John MacFarlane2013-02-09
|
* Added needed sudo to osx package signing.John MacFarlane2013-02-09
|
* Version to 1.10.1.1 since we no longer have API change.John MacFarlane2013-02-09
|
* Revert "Hide module Text.Pandoc.Parsing."John MacFarlane2013-02-09
| | | | | | | This reverts commit 18a5c9a8bf071398f3976a7c2c255638e135de7c. We want to do this eventually, but as it requires a major version bump, let's wait til later.
* Added code signing to make_oxs_package.sh.John MacFarlane2013-02-09
|
* Updated RELEASE-CHECKLIST.John MacFarlane2013-02-09
|
* UTF8: Strip off BOM if present.John MacFarlane2013-02-08
| | | | Closes #743.
* Changes to --version.John MacFarlane2013-02-07
| | | | | Print default user data directory. Put language names in lowercase and omit 'alert' and 'alert_indent'.
* Changes to --version.John MacFarlane2013-02-07
| | | | | Print default user data directory. Put language names in lowercase and omit 'alert' and 'alert_indent'.
* README: List proper default data directory for Windows 7.John MacFarlane2013-02-07
|
* Revert "Citation changes."John MacFarlane2013-02-06
| | | | This reverts commit d46f434d4b8906ae3b983e568549213de94fd1a2.
* Implement `--default-image-extension` for LaTeX reader.John MacFarlane2013-02-06
|
* Merge branch 'citations'John MacFarlane2013-02-05
|\
| * Citation changes.John MacFarlane2013-02-03
| | | | | | | | | | | | | | | | | | | | * 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.
* | Added `--default-image-extension` and `readerDefaultImageExtension`.John MacFarlane2013-02-05
| | | | | | | | Note: Currently this only affects the markdown reader.
* | Revert "Hide module Text.Pandoc.Highlighting."John MacFarlane2013-02-05
| | | | | | | | | | | | This reverts commit 01753ead71f6a08929f1535fcb497ff6d6015289. We need it after all in pandoc.hs.
* | Version bump to 1.11 due to API changes.John MacFarlane2013-02-05
| |
* | Hide module Text.Pandoc.Highlighting.John MacFarlane2013-02-05
| | | | | | | | This is really an auxiliary module.
* | Hide module Text.Pandoc.Parsing.John MacFarlane2013-02-05
| |
* | Beamer template: Lines to fix captions with longtable.John MacFarlane2013-02-03
|/ | | | Thanks to Joost Kremers.
* Removed unneeded blanklines in pipeTable parser.John MacFarlane2013-02-02
|
* Optimized oneOfStringsCI.John MacFarlane2013-02-02
| | | | | | | | | | 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.
* HTML reader: Handle colgroup tag.John MacFarlane2013-01-30
|
* Updated changelog.John MacFarlane2013-01-28
|
* DocBook writer: for linebreak, but newline in literallayout.John MacFarlane2013-01-28
| | | | Closes #725.
* Updated changelog.John MacFarlane2013-01-28
|
* Version bump to 1.10.1.John MacFarlane2013-01-28
|
* Fixed latex macro parsing.John MacFarlane2013-01-28
| | | | | | | | | 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.
* Updated latex table tests.John MacFarlane2013-01-28
|
* LaTeX writer: Avoid extra space at start/end of table cell.John MacFarlane2013-01-28
| | | | Thanks to Nick Bart for the suggestion of using @{}.
* Markdown writer: Set title, author, date variables as before.John MacFarlane2013-01-28
| | | | | These are no longer used in the default template, since we use titleblock, but we set them anyway for nondefault template users.
* Merge pull request #733 from jrunningen/masterJohn MacFarlane2013-01-28
|\ | | | | Mediawiki reader: Don't require blanklines after tables.
| * Mediawiki reader: Don't require blanklines after tables.Jeff Runningen2013-01-27
| |
* | Markdown/RST reader: Skip blank lines.John MacFarlane2013-01-27
|/ | | | | | | This fixes a subtle regression involving grid tables with empty cells. Closes #732. Also added test for grid table with empty cells.
* RST writer: Use `.. code:: language` for code blocks with language.John MacFarlane2013-01-26
| | | | | Closes #721. Also fixed whitespace in lhs tests.
* Markdown writer: Use autolink when link text matches url.John MacFarlane2013-01-26
| | | | | | | | 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.
* Removed hsmarkdown.John MacFarlane2013-01-26
|
* Markdown reader: Simplified and sped up str parser.John MacFarlane2013-01-25
| | | | | | | | 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.
* RST reader: Allow anonymous form of explicit links.John MacFarlane2013-01-25
| | | | | `hello <url>`__ Closes #724.
* Changed copyright date range on Markdown reader.John MacFarlane2013-01-25
|
* Minor code cleanup.John MacFarlane2013-01-25
|
* Markdown reader: Moved guardEnabled to definitionList.John MacFarlane2013-01-25
| | | | | From definitionListItem. Slight performance improvement.
* Markdown reader: Performance improvement in str parser.John MacFarlane2013-01-25
| | | | Moved a guardEnabled out of an inner loop.
* Use anyLine everywhere instead of 'manyTill anyChar newline'.John MacFarlane2013-01-25
|
* Parsing: More improvements of anyLine parser.John MacFarlane2013-01-25
|
* More anyLine tweaks: Use incSourceLine.John MacFarlane2013-01-25
|
* anyLine: Set position properly.John MacFarlane2013-01-25
|
* Makefile: Don't enable tests in 'make prof'.John MacFarlane2013-01-25
|