summaryrefslogtreecommitdiff
path: root/MANUAL.txt
Commit message (Collapse)AuthorAge
* Update docs on filters.John MacFarlane2017-12-28
|
* clarify default html output for --section-divsRichard Edwards2017-12-28
| | | | In Pandoc v2 using --section-divs and -t html results in <section>s, not <div>s, by default, as was the case for v1.9. This change to the Manual emphasizes that you must use -t html4 if you want divs, otherwise you get sections.
* Changed format of --list-extensions.John MacFarlane2017-12-28
| | | | Now the + or - occurs first.
* Allow `--list-extensions` to take an optional FORMAT argument.John MacFarlane2017-12-27
| | | | | This lists the extensions set by default for the selected FORMAT.
* Update manual date and man page.John MacFarlane2017-12-27
|
* MANUAL.txt introduce dedicated extensions sectionmb212017-12-27
|
* `latex_macros` extension changes.John MacFarlane2017-12-22
| | | | | | | | | | | | Don't pass through macro definitions themselves when `latex_macros` is set. The macros have already been applied. If `latex_macros` is enabled, then `rawLaTeXBlock` in Text.Pandoc.Readers.LaTeX will succeed in parsing a macro definition, and will update pandoc's internal macro map accordingly, but the empty string will be returned. Together with earlier changes, this closes #4179.
* Mention JATS output (and input) in MANUAL, README, cabal description.John MacFarlane2017-12-21
|
* MANUAL.txt use native syntax for custom-style (#4174)Mauro Bieg2017-12-21
|
* MANUAL: add note on what formats have +smart by default.John MacFarlane2017-12-14
|
* Markdown reader: always use four space rule for example lists.John MacFarlane2017-12-13
| | | | | | | | It would be awkward to indent example list contents to the first non-space character after the label, since example list labels are often long. Thanks to Bernhard Fisseni for the suggestion.
* Pipe tables: use full text width for tables with wrapping cells.John MacFarlane2017-12-12
| | | | | | | | | | Previously we computed the column sizes based on the ratio between the header lines and the text width (as set by `--columns`). This meant that tables with very short header lines would be very narrow. With this change, pipe tables with wrapping cells will always take up the whole text width. The relative column widths will still be determined by the ratio of header lines, but they will be normalized to add up to 1.0.
* Added support for LaTeX pagestyle variable (#4135)Thomas Hodgson2017-12-11
| | | | | | | | * Add pagestyle support * Add pagestyle option to MANUAL.txt * Moved mention of pagestyle to the section on variables
* Add PowerPoint info to MANUAL and README.Jesse Rosenthal2017-12-11
|
* Add `empty_paragraphs` extension.John MacFarlane2017-12-04
| | | | | | | | | | | | | | | | * Deprecate `--strip-empty-paragraphs` option. Instead we now use an `empty_paragraphs` extension that can be enabled on the reader or writer. By default, disabled. * Add `Ext_empty_paragraphs` constructor to `Extension`. * Revert "Docx reader: don't strip out empty paragraphs." This reverts commit d6c58eb836f033a48955796de4d9ffb3b30e297b. * Implement `empty_paragraphs` extension in docx reader and writer, opendocument writer, html reader and writer. * Add tests for `empty_paragraphs` extension.
* MANUAL: note on extensions in gfm.John MacFarlane2017-12-04
|
* Update man page and MANUAL date.John MacFarlane2017-12-02
|
* Add --strip-empty-paragraphs option.John MacFarlane2017-12-02
| | | | This works for any input format.
* Added --print-highlight-style option.John MacFarlane2017-11-28
| | | | | | | | This generates a JSON version of a highlighting style, which can be saved as a .theme file, modified, and used with `--highlight-style`. Closes #4106. Closes #4096.
* Update MANUAL dateJohn MacFarlane2017-11-20
|
* MANUAL: clarify that math extensions work with HTML.John MacFarlane2017-11-18
| | | | | Clarify that `tex_math_dollars` and `tex_math_single_backslash` will work with HTML as well as Markdown.
* MANUAL: update date.John MacFarlane2017-11-11
|
* MANUAL: fix header level of "Extension: emoji"Albert Krewinkel2017-11-09
| | | | The level of the "Extension: `emoji`" heading is reduced from 5 to 4 to conform with the other extension headings.
* Deprecated ancient HTML math methods.John MacFarlane2017-11-07
| | | | | | | `--latexmathml`, `--gladtex`, `--mimetex`, `--jsmath`
* MANUAL: consolidate math documentation (#4049)Mauro Bieg2017-11-07
|
* s/suppport/support/Alexander Krotov2017-11-06
|
* Update MANUAL date and man page.John MacFarlane2017-11-04
|
* Clarify that --setext-headers doesn't affect gfm output.John MacFarlane2017-11-04
| | | | Closes #4035.
* Revise clarification on fenced_divs.John MacFarlane2017-11-04
| | | | (#4039)
* Manual: Edit "Extension: fenced_divs" (#4039)Tristano Ajmone2017-11-04
| | | Add paragraph at end of `Extension: fenced_divs` section to clarify that the actual number of colons in fences is irrelevant. (See issue #4037).
* Support `lineAnchors` (or `line-anchors`) in code blocks, for HTML.John MacFarlane2017-11-02
|
* Removed reference to default.beamer in docs.John MacFarlane2017-11-01
| | | | | | | Also added mention of other templates affecting PDF output with different settings. Closes #4024.
* Updated date on manual and regenerated man page.John MacFarlane2017-10-31
|
* Revise documentation of small caps syntax. (#4013)Andrew Dunning2017-10-31
|
* Fix broken reference links in manual. (#4014)Andrew Dunning2017-10-31
|
* Fixed example of slide columns structure in changelog.John MacFarlane2017-10-31
| | | | | | Also documented this feature in MANUAL.txt. Closes #4015.
* Update date on MANUAL.txtJohn MacFarlane2017-10-27
|
* Improved documentation about markdown and gfm extensions.John MacFarlane2017-10-27
|
* Use CamelCase for JavaScript for uniformityKolen Cheung2017-10-26
| | | other instances when javascript is refered to in pandoc is also in CamelCase, the official casing of JavaScript.
* Fixed filters doc linkJohn MacFarlane2017-10-26
|
* Bring MANUAL, README, and pandoc.cabal description in sync.John MacFarlane2017-10-26
|
* Add creole support to manual.John MacFarlane2017-10-26
|
* Fenced divs: ensure that paragraph at end doesn't become Plain.John MacFarlane2017-10-24
| | | | Added test case.
* Implemented fenced Divs.John MacFarlane2017-10-23
| | | | | | | | | + Added Ext_fenced_divs to Extensions (default for pandoc Markdown). + Document fenced_divs extension in manual. + Implemented fenced code divs in Markdown reader. + Added test. Closes #168.
* Use doctemplates 0.2.1: allows `$--` line comments in templates.John MacFarlane2017-10-20
| | | | Closes #3806.
* Clarify DATADIR in MANUALJohn MacFarlane2017-10-18
|
* Split list of authors from MANUAL.txt into separate file, AUTHORS.md.John MacFarlane2017-10-17
| | | | It was getting too long for a man page.
* Updated AUTHORSJohn MacFarlane2017-10-17
|
* App: added --request-header option.John MacFarlane2017-10-15
|
* Updated authors in MANUAL.txt.John MacFarlane2017-10-11
|