Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-08-08 | Clarified what is "out of scope" in README and CONTRIBUTING.md. | John MacFarlane | 1 | -0/+10 | |
2015-08-07 | Updated readers, writers and README for link attribute | mb21 | 1 | -9/+4 | |
2015-08-06 | Clarify docs on block quotes. | John MacFarlane | 1 | -2/+9 | |
The space after `>` is optional. Closes #2346. | |||||
2015-07-27 | Text.Pandoc.Options: modifications for image attributes. | John MacFarlane | 1 | -5/+67 | |
* Added `Ext_common_link_attributes` constructor to `Extension` (for link and image attributes). * Added this to `pandocExtensions` and `phpMarkdownExtraExtensions`. * Added `writerDpi` to `WriterOptions`. * pandoc.hs: Added `--dpi` option. * Updated README for `--dpi` and `common_link_attributes` extension. Patch due to mb21, with some modifications: `writerDpi` is now an `Int` rather than a `Double`. | |||||
2015-07-26 | README: Added space after backslash in image example. | John MacFarlane | 1 | -1/+1 | |
See #2329. | |||||
2015-07-25 | Merge pull request #1689 from kuribas/master | John MacFarlane | 1 | -1/+2 | |
Use '=' instead of '#' for atx-style headers in markdown+lhs. | |||||
2015-07-23 | Updated README and cabal description for ODT reader. | John MacFarlane | 1 | -4/+4 | |
2015-07-21 | List all styles in manual for --reference-docx | Chris Black | 1 | -5/+6 | |
2015-07-21 | Fixed some internal links in README. | John MacFarlane | 1 | -6/+5 | |
Closes #2309. | |||||
2015-07-15 | Updated date on README. | John MacFarlane | 1 | -1/+1 | |
2015-07-13 | Improved documentation of options to print system default files. | John MacFarlane | 1 | -3/+5 | |
`--print-default-data-file` and `--print-default-template`. Closes #2298. | |||||
2015-07-09 | Added to Contributors list. | John MacFarlane | 1 | -2/+6 | |
2015-07-04 | Clarified that templates go in templates subdirectory of user data dir. | John MacFarlane | 1 | -3/+3 | |
Closes #2272. | |||||
2015-07-02 | Bump date on README | John MacFarlane | 1 | -1/+1 | |
2015-07-01 | New method for building man pages. | John MacFarlane | 1 | -8/+0 | |
+ 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`. | |||||
2015-06-29 | README: Added Lars-Dominik Braun as contributor | John MacFarlane | 1 | -0/+1 | |
2015-06-28 | New method for producing man pages. | John MacFarlane | 1 | -0/+8 | |
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. | |||||
2015-06-13 | Document CJKmainfont. | John MacFarlane | 1 | -2/+3 | |
2015-05-27 | Adjust date on README. | John MacFarlane | 1 | -1/+1 | |
2015-05-27 | Documented `toccolor` variable. | John MacFarlane | 1 | -0/+3 | |
2015-05-26 | README: Better documentation of syntax highlighting. | John MacFarlane | 1 | -1/+23 | |
See #1318. | |||||
2015-05-14 | Updated contributors and copyright dates in README. | John MacFarlane | 1 | -10/+122 | |
Closes #2153. | |||||
2015-05-13 | README: document which formats have `shortcut_reference_links`. | John MacFarlane | 1 | -3/+5 | |
2015-05-13 | Markdown reader: Made implicit header references case-insensitive. | John MacFarlane | 1 | -3/+10 | |
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. | |||||
2015-05-13 | Beamer: mark slide as `[fragile]` if header has `fragile` class. | John MacFarlane | 1 | -0/+10 | |
Closes #2119. | |||||
2015-05-12 | README: bibliography updates | Nikolay Yakimov | 1 | -1/+16 | |
2015-05-11 | Removed references to `biblio-files` in pandoc.hs and README. | John MacFarlane | 1 | -3/+3 | |
2015-05-11 | Fixed misleading example in README. | John MacFarlane | 1 | -8/+8 | |
2015-05-09 | Revert "EPUB writer: stylesheet changes. Closes #2040." | John MacFarlane | 1 | -2/+0 | |
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`. | |||||
2015-05-08 | EPUB writer: stylesheet changes. Closes #2040. | John MacFarlane | 1 | -0/+2 | |
* 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. | |||||
2015-05-07 | README: Add documentation on backtick_code_blocks | Nikolay Yakimov | 1 | -6/+11 | |
Closes #2135 | |||||
2015-05-05 | Merge pull request #2131 from nickbart1980/patch-2 | John MacFarlane | 1 | -0/+6 | |
Update README on in-field markup in biblio databases | |||||
2015-05-05 | Fix typos in User's Guide | J. Lewis Muir | 1 | -3/+3 | |
2015-05-05 | Update README on in-field markup in biblio databases | nickbart1980 | 1 | -0/+6 | |
Motivated by https://github.com/jgm/pandoc-citeproc/issues/124. | |||||
2015-04-17 | Merge pull request #1954 from mcmtroffaes/feature/citekey-firstchar-alphanum | John MacFarlane | 1 | -1/+1 | |
Allow digit as first character of a citation key. | |||||
2015-04-16 | Various minor formatting and consistency fixes for the program options. | Andreas Lööw | 1 | -25/+25 | |
2015-04-16 | Minor, fixed a Markdown error that caused formatting problems. | Andreas Lööw | 1 | -6/+6 | |
2015-04-14 | Document `toc-title` variable in README. | John MacFarlane | 1 | -0/+3 | |
See #2081. | |||||
2015-04-13 | Merge pull request #2078 from nickbart1980/patch-2 | John MacFarlane | 1 | -6/+10 | |
Adds YAML biblio format | |||||
2015-04-13 | LaTeX template: include grffile together with graphicx. | John MacFarlane | 1 | -1/+2 | |
This properly handles filenames containing spaces and dots. Closes #2074. | |||||
2015-04-13 | Adds YAML biblio format | nickbart1980 | 1 | -6/+10 | |
Also, adds note on pandoc-citeproc --bib2json and pandoc-citeproc --bib2yaml, and sorts table | |||||
2015-04-10 | Fix obsolete reference to mods2yaml | nickbart1980 | 1 | -23/+29 | |
2015-03-30 | Merge pull request #2035 from lierdakil/issue2031 | John MacFarlane | 1 | -3/+4 | |
Docx Writer/Reference: Add keepNext to objects w/ captions | |||||
2015-03-29 | Added CommonMark writer. | John MacFarlane | 1 | -40/+43 | |
Added `Text.Pandoc.Writers.CommonMark`, exporting `writeCommonMark`. | |||||
2015-03-29 | Updated README with new Docx Writer style names | Nikolay Yakimov | 1 | -3/+4 | |
2015-03-28 | README: Add links to filter libs in perl, php, javascript. | John MacFarlane | 1 | -1/+6 | |
Closes #1829. | |||||
2015-03-27 | README: make defn lists for options all "loose" for consistency. | John MacFarlane | 1 | -0/+78 | |
2015-03-17 | Added CommonMark reader using cmark (libcmark bindings). | John MacFarlane | 1 | -11/+14 | |
- 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. | |||||
2015-03-16 | Replace occurrences of 'Github' with 'GitHub' | Tom Leese | 1 | -1/+1 | |
The website is called 'GitHub' afterall. | |||||
2015-03-15 | Moved and rewrote documentation for `shortcut_reference_links` ext. | John MacFarlane | 1 | -7/+11 | |