aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-09-14Typo in changelog.John MacFarlane1-4/+4
2013-09-14changelog: Added some citation-related entries.John MacFarlane1-0/+5
These properly relate to pandoc-citeproc, but will be of interest to pandoc users.
2013-09-14Further fixes to make_osx_package.sh.John MacFarlane1-8/+7
2013-09-14Windows: make citation support a separable component.John MacFarlane1-1/+3
2013-09-14Updated windows installer batch file.John MacFarlane1-3/+6
2013-09-14Updated make_osx_package.sh.John MacFarlane1-12/+18
2013-09-14More robust check for '-F pandoc-filters', allowing pathnames.John MacFarlane1-3/+3
2013-09-13README: Added link to lua.John MacFarlane1-1/+1
2013-09-12Markdown writer: Print references if output is 'plain'.John MacFarlane1-1/+2
2013-09-12HTML writer: Ensure proper escaping in header metadata.John MacFarlane2-4/+6
2013-09-11Updated README on pandocfilters python module.John MacFarlane1-5/+6
2013-09-11Changed pandocfilters repository URL.John MacFarlane2-2/+2
2013-09-11Updated changelog.John MacFarlane1-0/+1
2013-09-11Mediawiki: Parse an image + caption in a para by itself as a figure.John MacFarlane2-6/+6
2013-09-10`--bibliography` again implies `-F pandoc-citeproc`.John MacFarlane2-7/+14
But only if pandoc-citeproc isn't already specified as a filter.
2013-09-10benchmark: Remove haddock (no writer to create reader input).John MacFarlane1-1/+2
2013-09-09Fixed a couple test files in cabal file.John MacFarlane1-2/+2
2013-09-09Further changelog formatting cleanup.John MacFarlane1-21/+21
2013-09-09Updated changelog.John MacFarlane1-116/+126
2013-09-09Markdown: don't parse citation right after alphanumeric.John MacFarlane1-0/+5
An `@` after an alphanumeric is probably an email address.
2013-09-08`--bibliography` no longer implies `-F pandoc-citeproc`.John MacFarlane2-6/+2
This could lead to double filtering if the user specifies `-F` too.
2013-09-08More work on changelog.John MacFarlane1-47/+29
2013-09-08More work on changelog.John MacFarlane1-81/+73
2013-09-08More work on changelog.John MacFarlane1-119/+113
2013-09-08Made . . . for pause work in all slide show formats except slideous.John MacFarlane3-14/+18
2013-09-08Added more raw material to changelog.John MacFarlane1-0/+8
2013-09-08Templates: more consistent behavior of `$for$`.John MacFarlane1-1/+1
When `foo` is not a list, `$for(foo)$...$endfor$` should behave like $if(foo)$...$endif$. So if `foo` resolves to "", no output should be produced. See pandoc-templates#39.
2013-09-08More work on changelog.John MacFarlane1-0/+3
2013-09-08markdown+list_without_preceding_blankline:+Interpret text before list as ↵John MacFarlane1-3/+5
paragraph.
2013-09-08Markdown: Allow backtick code blocks not to be preceded by blank line.John MacFarlane1-0/+3
Closes #975.
2013-09-08Partial reorganization of changelog.John MacFarlane1-301/+356
2013-09-07HTML5 template: Add meta tag to allow user scaling.John MacFarlane1-5/+8
(Erik Evenson)
2013-09-07MedaWiki reader: Implement some mathjax extensions.John MacFarlane1-4/+15
* `:<math>` for display math * `\(..\)` for inline math * `\[..\]` for display math We omit the `$` forms as the heuristics are harder.
2013-09-07Added `lists_without_preceding_blankline` extension.John MacFarlane3-0/+7
* Added `Ext_lists_without_preceding_blankline` to `Extension` in `Options`. Added this option to `githubMarkdownExtensions`. * Made markdown reader sensitive to this. * Closes #972.
2013-09-06make_osx_package.sh: Assume pandoc-types, pandoc-citeproc are in Hackage.John MacFarlane1-4/+0
2013-09-06Tweaked windows install script.John MacFarlane1-3/+1
Assumes that pandoc-types and pandoc-citeproc are in Hackage.
2013-09-06Markdown writer: Fixed bugs in YAML header output.John MacFarlane2-4/+4
2013-09-06MediaWiki reader: Allow Image: for images.John MacFarlane1-1/+1
Closes #971.
2013-09-05More windows package tweaks.John MacFarlane1-0/+1
Make sure subordinate packages are reinstalled.
2013-09-05Windows installer: gave up on unicode collation.John MacFarlane1-1/+0
2013-09-05Fixed typo.John MacFarlane1-1/+1
2013-09-05Preliminary changes to windows installer script.John MacFarlane2-2/+17
2013-09-02Fixed make_osx_package.sh.John MacFarlane1-7/+11
2013-09-02Improved make_osx_package.sh.John MacFarlane1-6/+14
New PackageMaker location. New method of installing, to get pandoc-citeproc executables too. Use embed_data_files.
2013-09-01Documented --bibliography, --csl, --citation-abbreviations.John MacFarlane1-0/+17
2013-09-01Changed --metadata to return Boolean True if no value.John MacFarlane2-7/+14
Also documented in README.
2013-09-01Change for latest pandoc-citeproc.John MacFarlane1-1/+1
2013-09-01Restore --bibliography, --csl, --citation-abbreviations.John MacFarlane1-0/+27
These are now implemented as: --bibliography FILE => --metadata bibliography=FILE --filter pandoc-citeproc --csl FILE => --metadata csl=FILE --citation-abbreviations FILE => --metadata csl-abbreviations=FILE
2013-09-01Added `--metadata/-M` option.John MacFarlane2-7/+24
This is like `--variable/-V`, but actually adds to metadata, not just variables.
2013-09-01Markdown reader: Don't autolink a bare URI that is followed by `</a>`.John MacFarlane2-1/+5
Closes #937.