summaryrefslogtreecommitdiff
path: root/README
Commit message (Collapse)AuthorAge
* Bump date on READMEJohn MacFarlane2015-07-02
|
* New method for building man pages.John MacFarlane2015-07-01
| | | | | | | | | | | | | | | | | | + Removed `--man1`, `--man5` options (breaking change). + Removed `Text.Pandoc.ManPages` module (breaking API change). + Version bump to 1.15 because of the breaking changes, even though they involve features that have only been in pandoc for a day. + Makefile target for `man/man1/pandoc.1`. This uses pandoc to create the man page from README using a custom template and filters. + Added `man/` directory with template and filters needed to build man page. + We no longer have two man pages: pandoc.1 and pandoc_markdown.5. Now there is just pandoc.1, which has all the content from README. This change was needed because of the extensive cross-references between parts of the README. + Removed old `data/pandoc.1.template` and `data/pandoc_markdown.5.template`.
* README: Added Lars-Dominik Braun as contributorJohn MacFarlane2015-06-29
|
* New method for producing man pages.John MacFarlane2015-06-28
| | | | | | | | | | | | | | | | | | | | | This change adds `--man1` and `--man5` options to pandoc, so pandoc can generate its own man pages. It removes the old overly complex method of building a separate executable (but not installing it) just to create the man pages. The man pages are no longer automatically created in the build process. The man/ directory has been removed. The man page templates have been moved to data/. New unexported module: Text.Pandoc.ManPages. Text.Pandoc.Data now exports readmeFile, and `readDataFile` knows how to find README. Closes #2190.
* Document CJKmainfont.John MacFarlane2015-06-13
|
* Adjust date on README.John MacFarlane2015-05-27
|
* Documented `toccolor` variable.John MacFarlane2015-05-27
|
* README: Better documentation of syntax highlighting.John MacFarlane2015-05-26
| | | | See #1318.
* Updated contributors and copyright dates in README.John MacFarlane2015-05-14
| | | | Closes #2153.
* README: document which formats have `shortcut_reference_links`.John MacFarlane2015-05-13
|
* Markdown reader: Made implicit header references case-insensitive.John MacFarlane2015-05-13
| | | | | | | | | Added `stateHeaderKeys` to `ParserState`; this is a `KeyTable` like `stateKeys`, but it only gets consulted if we don't find a match in `stateKeys`, and if `Ext_implicit_header_references` is enabled. Closes #1606.
* Beamer: mark slide as `[fragile]` if header has `fragile` class.John MacFarlane2015-05-13
| | | | Closes #2119.
* README: bibliography updatesNikolay Yakimov2015-05-12
|
* Removed references to `biblio-files` in pandoc.hs and README.John MacFarlane2015-05-11
|
* Fixed misleading example in README.John MacFarlane2015-05-11
|
* Revert "EPUB writer: stylesheet changes. Closes #2040."John MacFarlane2015-05-09
| | | | | | | | | | This reverts commit 1c2951dfd9ee72e5270cb974a06098adb9178f89. See #2040. The semantics was too squishy. `--css` takes a URL, but for EPUB we need files that we can read. I prefer keeping the old system for now, with `--epub-stylesheet`.
* EPUB writer: stylesheet changes. Closes #2040.John MacFarlane2015-05-08
| | | | | | | | | | | | * Allow `--css` to be used to specify stylesheets. * Deprecated `--epub-stylesheet` and made it a synoynym of `--css`. * If a code block with class "css" is given as contents of the `stylesheet` metadata field, use its literal code as contents of the epub stylesheet. Otherwise, treat it as a filename and read the file. * Note: `--css` and `stylesheet` in metadata are not compatible. `stylesheet` takes precedence.
* README: Add documentation on backtick_code_blocksNikolay Yakimov2015-05-07
| | | | Closes #2135
* Merge pull request #2131 from nickbart1980/patch-2John MacFarlane2015-05-05
|\ | | | | Update README on in-field markup in biblio databases
| * Update README on in-field markup in biblio databasesnickbart19802015-05-05
| | | | | | Motivated by https://github.com/jgm/pandoc-citeproc/issues/124.
* | Fix typos in User's GuideJ. Lewis Muir2015-05-05
|/
* Merge pull request #1954 from mcmtroffaes/feature/citekey-firstchar-alphanumJohn MacFarlane2015-04-17
|\ | | | | Allow digit as first character of a citation key.
| * Allow digit as first character of a citation key.Matthias C. M. Troffaes2015-02-18
| | | | | | | | | | | | | | | | * Update parser to recognize citation keys starting with a digit. * Update documentation accordingly. * Test case added. See https://github.com/jgm/pandoc-citeproc/issues/97
* | Various minor formatting and consistency fixes for the program options.Andreas Lööw2015-04-16
| |
* | Minor, fixed a Markdown error that caused formatting problems.Andreas Lööw2015-04-16
| |
* | Document `toc-title` variable in README.John MacFarlane2015-04-14
| | | | | | | | See #2081.
* | Merge pull request #2078 from nickbart1980/patch-2John MacFarlane2015-04-13
|\ \ | | | | | | Adds YAML biblio format
| * | Adds YAML biblio formatnickbart19802015-04-13
| | | | | | | | | Also, adds note on pandoc-citeproc --bib2json and pandoc-citeproc --bib2yaml, and sorts table
* | | LaTeX template: include grffile together with graphicx.John MacFarlane2015-04-13
|/ / | | | | | | | | This properly handles filenames containing spaces and dots. Closes #2074.
* | Fix obsolete reference to mods2yamlnickbart19802015-04-10
| |
* | Merge pull request #2035 from lierdakil/issue2031John MacFarlane2015-03-30
|\ \ | | | | | | Docx Writer/Reference: Add keepNext to objects w/ captions
| * | Updated README with new Docx Writer style namesNikolay Yakimov2015-03-29
| | |
* | | Added CommonMark writer.John MacFarlane2015-03-29
| | | | | | | | | | | | | | | Added `Text.Pandoc.Writers.CommonMark`, exporting `writeCommonMark`.
* | | README: Add links to filter libs in perl, php, javascript.John MacFarlane2015-03-28
|/ / | | | | | | Closes #1829.
* | README: make defn lists for options all "loose" for consistency.John MacFarlane2015-03-27
| |
* | Added CommonMark reader using cmark (libcmark bindings).John MacFarlane2015-03-17
| | | | | | | | | | | | | | | | - Added commonmark as an input format. - Added `Text.Pandoc.Readers.CommonMark.readCommonMark`. - For now, we use the markdown writer to generate benchmark text for the CommonMark reader. We can change this when we get a writer.
* | Replace occurrences of 'Github' with 'GitHub'Tom Leese2015-03-16
| | | | | | | | The website is called 'GitHub' afterall.
* | Moved and rewrote documentation for `shortcut_reference_links` ext.John MacFarlane2015-03-15
| |
* | Merge pull request #1989 from zudov/shortcut_ref_link_prJohn MacFarlane2015-03-15
|\ \ | | | | | | Support shortcut reference links in markdown writer
| * | Support shortcut reference links in markdown writerKonstantin Zudov2015-03-10
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #1977 Most markdown processors support the [shortcut format] for reference links. Pandoc's markdown reader parsed this shortcuts unoptionally. Pandoc's markdown writer (with --reference-links option) never shortcutted links. This commit adds an extension `shortcut_reference_links`. The extension is enabled by default for those markdown flavors that support reading shortcut reference links, namely: - pandoc - strict pandoc - github flavoured - PHPmarkdown If extension is enabled, reader parses the shortcuts in the same way as it preveously did. Otherwise it would parse them as normal text. If extension is enabled, writer outputs shortcut reference links unless doing so would cause problems (see test cases in `tests/Tests/Writers/Markdown.hs`).
* | Fixed pipe tables -- headerless tables are not allowed.John MacFarlane2015-03-07
| | | | | | | | | | | | | | | | | | | | | | | | | | GFM and PHP Markdown Extra pipe tables require headers. Previously pandoc allowed pipe tables not to include headers, and produced headerless pipe tables in Markdown output, but this was based on a misconception about pipe table syntax. This commit fixes this. Note: If you have been using headerless pipe tables, this may cause existing tables to break. Closes #1996.
* | Fix issue #969, #1779 by providing --latex-engine-optSumit Sahrawat2015-03-04
|/
* Allow wildcards in `--epub-embed-font` arguments.John MacFarlane2015-02-13
| | | | Closes #1939.
* Added `--verbose` flag for debugging output in PDF production.John MacFarlane2014-12-26
| | | | | Closes #1840. Closes #1653.
* Fixed link in READMEJohn MacFarlane2014-12-16
|
* Reworded paragraph on citation data in README.John MacFarlane2014-12-15
| | | | Closes #1814.
* Don't treat a citation as a reference link label.John MacFarlane2014-12-15
| | | | Closes #1763.
* Added a note about the need for `-s` to include YAML in Markdown output.John MacFarlane2014-12-15
| | | | Closes #1715. Thanks to @nichtich for the suggestion.
* Merge pull request #1646 from neongreen/issue1631Matthew Pickering2014-12-08
|\ | | | | Add an -email address link- example to README.
| * README: Add an -email address link- example.Artyom2014-09-26
| | | | | | | | Fixes #1631.