summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* markdown+list_without_preceding_blankline:+Interpret text before list as ↵John MacFarlane2013-09-08
| | | | paragraph.
* Markdown: Allow backtick code blocks not to be preceded by blank line.John MacFarlane2013-09-08
| | | | Closes #975.
* Partial reorganization of changelog.John MacFarlane2013-09-08
|
* HTML5 template: Add meta tag to allow user scaling.John MacFarlane2013-09-07
| | | | (Erik Evenson)
* MedaWiki reader: Implement some mathjax extensions.John MacFarlane2013-09-07
| | | | | | | | * `:<math>` for display math * `\(..\)` for inline math * `\[..\]` for display math We omit the `$` forms as the heuristics are harder.
* Added `lists_without_preceding_blankline` extension.John MacFarlane2013-09-07
| | | | | | | | * Added `Ext_lists_without_preceding_blankline` to `Extension` in `Options`. Added this option to `githubMarkdownExtensions`. * Made markdown reader sensitive to this. * Closes #972.
* make_osx_package.sh: Assume pandoc-types, pandoc-citeproc are in Hackage.John MacFarlane2013-09-06
|
* Tweaked windows install script.John MacFarlane2013-09-06
| | | | Assumes that pandoc-types and pandoc-citeproc are in Hackage.
* Markdown writer: Fixed bugs in YAML header output.John MacFarlane2013-09-06
|
* MediaWiki reader: Allow Image: for images.John MacFarlane2013-09-06
| | | | Closes #971.
* More windows package tweaks.John MacFarlane2013-09-05
| | | | Make sure subordinate packages are reinstalled.
* Windows installer: gave up on unicode collation.John MacFarlane2013-09-05
|
* Fixed typo.John MacFarlane2013-09-05
|
* Preliminary changes to windows installer script.John MacFarlane2013-09-05
|
* Fixed make_osx_package.sh.John MacFarlane2013-09-02
|
* Improved make_osx_package.sh.John MacFarlane2013-09-02
| | | | | | New PackageMaker location. New method of installing, to get pandoc-citeproc executables too. Use embed_data_files.
* Documented --bibliography, --csl, --citation-abbreviations.John MacFarlane2013-09-01
|
* Changed --metadata to return Boolean True if no value.John MacFarlane2013-09-01
| | | | Also documented in README.
* Change for latest pandoc-citeproc.John MacFarlane2013-09-01
|
* Restore --bibliography, --csl, --citation-abbreviations.John MacFarlane2013-09-01
| | | | | | | | 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
* Added `--metadata/-M` option.John MacFarlane2013-09-01
| | | | | This is like `--variable/-V`, but actually adds to metadata, not just variables.
* Markdown reader: Don't autolink a bare URI that is followed by `</a>`.John MacFarlane2013-09-01
| | | | Closes #937.
* Mathjax in HTML slide shows: include explicit "Typeset" instruction.John MacFarlane2013-09-01
| | | | | | | This seems to be needed for some formats (e.g. slideous) and won't hurt in others. Closes #966.
* Document fact that --toc doesn't do anything for docx or odt output.John MacFarlane2013-09-01
| | | | See #458.
* Use registerHeader in Textile reader.John MacFarlane2013-09-01
| | | | | | | This produces automatic header identifiers, unless `auto_identifiers` extension is disabled. Closes #967.
* Use registerHeader in RST and LaTeX readers.John MacFarlane2013-09-01
| | | | | This will give automatic unique identifiers, unless `-auto_identifiers` is specified.
* Factored out registerHeader from markdown reader, added to Parsing.John MacFarlane2013-09-01
| | | | | Text.Pandoc.Parsing now exports registerHeader, which can be used in other readers.
* Updated changelogJohn MacFarlane2013-08-31
|
* Merge branch 'master' of github.com:jgm/pandocJohn MacFarlane2013-08-31
|\
| * LaTeX reader: allow spaces in alignment spec in tables.John MacFarlane2013-08-28
| | | | | | | | E.g. `{ l r c }`.
| * Generalized type of stringify.John MacFarlane2013-08-28
| |
| * LaTeX reader: Allow accents with combining characters.John MacFarlane2013-08-27
| | | | | | | | accent now returns [Char], not Char.
| * Merge branch 'master' of github.com:jgm/pandocJohn MacFarlane2013-08-27
| |\
| * | LaTeX reader: Added o-cedilla.John MacFarlane2013-08-21
| | |
* | | INSTALL: Added instructions for pandoc-citeproc.John MacFarlane2013-08-31
| |/ |/|
* | Added markdown citation parsing test.John MacFarlane2013-08-26
| |
* | Merge pull request #961 from nougad/add_latex_listings_labelJohn MacFarlane2013-08-25
|\ \ | | | | | | Write id for code block to label attr in latex when listing is used
| * | Write id for code block to label attr in latex when listing is usedFlorian Eitel2013-08-22
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The code: ~~~{#test} asdf ~~~ gets compiled to html: <pre id="test"> asdf </pre> So it is possible to link to the identifier `test` But this doesn't happen on latex When using the listings package (`--listings`) it is possible to set the identifier using the `label=test` property: \begin{lstlisting}[label=id] hi \end{lstlisting} And this is exactly what this patch is doing. Modified LaTeX Reader/Writer and added tests for this.
* | Added `-F` as shortcut for `--filter`.John MacFarlane2013-08-25
| |
* | Removed tests relating to citation processing.John MacFarlane2013-08-25
| |
* | Removed citeproc-hs from osx, windows build process.John MacFarlane2013-08-24
| |
* | Updated travis build.John MacFarlane2013-08-24
| |
* | Removed dependency on citeproc-hs.John MacFarlane2013-08-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Going forward we'll use pandoc-citeproc, as an external filter. The `--bibliography`, `--csl`, and `--citation-abbreviation` fields have been removed. Instead one must include `bibliography`, `csl`, or `csl-abbrevs` fields in the document's YAML metadata. The filter can then be used as follows: pandoc --filter pandoc-citeproc The `Text.Pandoc.Biblio` module has been removed. Henceforth, `Text.CSL.Pandoc` from pandoc-citations can be used by library users. The Markdown and LaTeX readers now longer format bibliographies and citations. That must be done using `processCites` or `processCites'` from Text.CSL.Pandoc. All bibliography-related fields have been removed from `ReaderOptions` and `WriterOptions`: `writerBiblioFiles`, `readerReferences`, `readerCitationStyle`. API change.
* | Moved most of Text.Pandoc.Readers.TeXMath to texmath 0.6.4.John MacFarlane2013-08-24
| |
* | Improved error reporting on filters.John MacFarlane2013-08-24
|/ | | | Avoid showing spurious output and avoid double error messages.
* Merge pull request #960 from semorrison/masterJohn MacFarlane2013-08-21
|\ | | | | Processing some additional cedilla accents while reading LaTeX
| * cedilla-o breaks the compile, removing againScott Morrison2013-08-21
| |
| * adding some cedilla characters to the LaTeX readerScott Morrison2013-08-21
| |
* | Merge branch 'altcite'John MacFarlane2013-08-20
|\ \
| * | Create Cite element even if no matching reference in the biblio.John MacFarlane2013-08-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add ??? as fallback text for non-resolved citations. * Biblio: Put references (including a header at the end of the document, if one exists) inside a Div with class "references". This gives some control over styling of references, and allows scripts to manipulate them. * Markdown writer: Print markdown citation codes, and disable printing of references, if `citations` extension is enabled. NOTE: It would be good to improve what citeproc-hs does for a nonexistent key.