summaryrefslogtreecommitdiff
path: root/MANUAL.txt
Commit message (Collapse)AuthorAge
...
| * Removed `--normalize` option and normalization functions from Shared.John MacFarlane2017-01-25
| | | | | | | | | | | | | | | | | | | | | | | | | | * Removed normalize, normalizeInlines, normalizeBlocks from Text.Pandoc.Shared. These shouldn't now be necessary, since normalization is handled automatically by the Builder monoid instance. * Remove `--normalize` command-line option. * Don't use normalize in tests. * A few revisions to readers so they work well without normalize.
| * Removed deprecated `--no-wrap` option.John MacFarlane2017-01-25
| |
| * Removed deprecated `--chapters` option.John MacFarlane2017-01-25
| |
| * Simplified reference-docx/reference-odt to reference-doc.John MacFarlane2017-01-25
| | | | | | | | | | | | | | | | | | | | | | | | * Text.Pandoc.Options.WriterOptions: removed writerReferenceDocx and writerReferenceODT, replaced them with writerReferenceDoc. This can hold either an ODT or a Docx. In this way, writerReferenceDoc is like writerTemplate, which can hold templates of different formats. [API change] * Removed `--reference-docx` and `--reference-odt` options. * Added `--reference-doc` option.
| * Added `--fail-if-warnings` option.John MacFarlane2017-01-25
| |
| * Added a `--quiet` option to suppress warnings.John MacFarlane2017-01-25
| | | | | | | | Use this also in Tests.Old.
* | Updated authors and date in MANUALJohn MacFarlane2017-01-29
|/
* Add breezeDark to the list of highlighting styles.John MacFarlane2017-01-19
|
* Clarify that blank space is needed around footnotes.John MacFarlane2017-01-15
| | | | Closes #3352.
* LaTeX template: allow passing `microtypeoptions` to microtype.John MacFarlane2017-01-03
| | | | Thanks to Vaclav Haisman.
* Add '@*' usage (#3333)John Muccigrosso2016-12-31
| | | | | | | | | | | | * Add '@*' usage Added to nocite section to add the wildcard functionality. * Restoring accented characters. Removed trailing whitespace in new text too. * Removing unneeded single quotes.
* MANUAL/README: Fixed broken links (#3316)ickc2016-12-16
| | | | | MANUAL/README: "groff man" links to groff_man rather than groff MANUAL/README: Word docx link to wikipedia
* MANUAL: note that --wrap=auto does not work in HTML output.John MacFarlane2016-12-16
|
* MANUAL: Default --columns width is 72, not 80.John MacFarlane2016-12-16
|
* Updated MANUAL date and man page.John MacFarlane2016-12-10
|
* MANUAL: better docs on how to create a custom reference.docx.John MacFarlane2016-12-07
|
* Minor spelling typos in the manual (#3273)Anthony Geoghegan2016-12-03
| | | | | | | | | | | | * Fix spelling typos: * hightlight * respecitively * codeblock – inconsistent with rest of document using “code block” * Use consistent case for proper nouns. For example: “ASCII”, “Unicode”, “Latin”, “JavaScript”, “CSS”.
* Update date in manual and man page.John MacFarlane2016-11-30
|
* Refactor top-level division selection (#3261)Albert Krewinkel2016-11-27
| | | | | | | | | | | | | | The "default" option is no longer represented as `Nothing` but via a new type constructor, making the `Maybe` wrapper superfluous. The default behavior of using heuristics can now be enabled explicitly by setting `--top-level-division=default`. API change (`Text.Pandoc.Options`): The `Division` type was renamed to `TopLevelDivision`. The `Section`, `Chapter`, and `Part` constructors were renamed to `TopLevelSection`, `TopLevelChapter`, and `TopLevelPart`, respectively. An additional `TopLevelDefault` constructor was added, which is now also the new default value of the `writerTopLevelDivision` field in `WriterOptions`.
* Further revisions to manual for --version changes.John MacFarlane2016-11-23
| | | | Closes #3244.
* Changed resolution of filter paths.John MacFarlane2016-11-21
| | | | | | | | | | | | | | | | | | | | | | | | - We now first treat the argument of `--filter` as a full (absolute or relative) path, looking for a program there. If it's found, we run it. - If not, and if it is a simple program name or a relative path, we try resolving it relative to `$DATADIR/filters`. - If this fails, then we treat it as a program name and look in the user's PATH. Previously if you did `--filter foo` and you had `foo` in your path and also an executable `foo` in your working directory, the one in the path would be used. Now the one in the working directory is used. In addition, when you do `--filter foo/bar.hs`, pandoc will now find a filter `$DATADIR/filters/foo/bar.hs` -- assuming there isn't a `foo/bar.hs` relative to the working directory. @jkr note the slight revision of what we had before. This was motivated by the idea that one might clone filter repositories into the filters subdirectory; it is nice to be able to run them as `reponame/filtername`.
* Small caps in Bracketed Spans (#3191)ickc2016-11-16
| | | | | | | | * Markdown reader: modify bracketedSpan to check small caps * MANUAL.txt: add description on the use of `bracketed_spans` in small cap * Improve markdown readers: bracketedSpan function EXACTLY as spanHtml
* Allow alignments to be specified in Markdown grid tables.John MacFarlane2016-11-15
|
* Updated authors in MANUAL.txt.John MacFarlane2016-10-26
|
* Fixed date on MANUAL.txtJohn MacFarlane2016-10-26
|
* Document hyperref options for beamer in MANUAL.John MacFarlane2016-10-25
|
* Added --list-* options.John MacFarlane2016-10-23
| | | | | | | | | | | | | | Added `--list-input-formats`, `--list-output-formats`, `--list-extensions`, `--list-highlight-languages`, `--list-highlight-styles`. Removed list of highlighting languages from `--version` output. Removed list of input and output formats from default `--help` output. Closes #3173.
* Added `angle_brackets_escapable` extension.John MacFarlane2016-10-22
| | | | | | | | This is needed because github flavored Markdown has a slightly different set of escapable symbols than original Markdown; it includes angle brackets. Closes #2846.
* "Merge" MANUAL.txt into README.md (#3167)ickc2016-10-22
| | | | | | | | | * "Merge" MANUAL.txt into README.md Pull request #3157 without the automatic building from MANUAL.txt to README.md * remove contributors in README.md
* Add option for top-level division typeAlbert Krewinkel2016-10-19
| | | | | | | | | | The `--chapters` option is replaced with `--top-level-division` which allows users to specify the type as which top-level headers should be output. Possible values are `section` (the default), `chapter`, or `part`. The formats LaTeX, ConTeXt, and Docbook allow `part` as top-level division, TEI only allows to set the `type` attribute on `div` containers. The writers are altered to respect this option in a sensible way.
* Add --parts command line option to LaTeX writer.Oliver Matthews2016-09-06
| | | | | | | Add --parts command line argument. This only effects LaTeX writer, and only for non-beamer output formats. It changes the output levels so the top level is 'part', the next 'chapter' and then into sections.
* Document `biblio-title` variable in MANUAL.txt.John MacFarlane2016-10-13
| | | | Cloess #258.
* MANUAL: Made formatting of arguments with several options consistent.John MacFarlane2016-10-12
|
* Note on --reference-links about --reference-location.John MacFarlane2016-10-12
|
* MANUAL.txt: document --reference-location.Jesse Rosenthal2016-10-11
|
* update manual accordinglyKolenCheung2016-10-09
|
* Added a small clarification on --webtex with Markdown output.John MacFarlane2016-10-06
| | | | Thanks to @ickc.
* fix typoKolenCheung2016-10-06
|
* Replace Google Chart API by CodeCogsKolenCheung2016-10-06
|
* Markdown reader: added bracket syntax for native spans.John MacFarlane2016-09-28
| | | | | | | See #168. Text.Pandoc.Options.Extension has a new constructor `Ext_brackted_spans`, which is enabled by default in pandoc's Markdown.
* Whitespace fixes.John MacFarlane2016-09-28
|
* Update MANUAL.txt for new filter behavior.Jesse Rosenthal2016-09-27
|
* Updated man page and MANUAL date.John MacFarlane2016-09-26
|
* Merge pull request #3071 from tarleb/structured-author-docJohn MacFarlane2016-09-20
|\ | | | | Put note on structured vars in separate paragraph
| * Put note on structured vars in separate paragraphAlbert Krewinkel2016-08-15
| | | | | | | | | | | | | | | | | | | | Make it clearer that structured author variables require a custom template. Many thanks to John Muccigrosso (@Jmuccigr) for his help in addressing this issue. This supersedes and closes #2148.
* | Note in MANUAL that `--katex` works best with `html5`.John MacFarlane2016-08-20
| | | | | | | | Closes #3077.
* | MANUAL: fix up custom-style documentation.Jesse Rosenthal2016-08-20
| | | | | | | | | | | | | | | | * Remove nitty-gritty details about custom-style filters (it won't make sense to readers unfamiliar with filters, and would be obvious to users already familiar with them). * Fix a capitalization.
* | MANUAL: fix some whitespace issues.Jesse Rosenthal2016-08-15
| |
* | Add discussion of custom styles to MANUAL.txt.Jesse Rosenthal2016-08-15
|/
* Added `themeoptions` variable to beamer template (Carsten Gips).John MacFarlane2016-08-11
|