summaryrefslogtreecommitdiff
path: root/MANUAL.txt
Commit message (Collapse)AuthorAge
* `--mathml` and MathML in HTMLMathMethod longer take an argument.John MacFarlane2017-01-30
| | | | | The argument was for a bridge javascript that used to be necessary in 2004. We have removed the script already.
* Make epub an alias for epub3, not epub2.John MacFarlane2017-01-30
|
* Merge branch 'typeclass'John MacFarlane2017-01-29
|\
| * Split writeDocbook into writeDocbook4, writeDocbook5.John MacFarlane2017-01-26
| | | | | | | | | | | | | | Removed writerDocbookVersion in WriterOptions. Renamed default.docbook template to default.docbook4. Allow docbook4 as an output format. But alias docbook = docbook4.
| * EPUB writer: split writeEPUB into writeEPUB2, writeEPUB3.John MacFarlane2017-01-26
| | | | | | | | Also include explicit epub2 output format in CLI tool.
| * Removed duplicate name in authorsJohn MacFarlane2017-01-25
| |
| * Removed writerTeXLigatures.John MacFarlane2017-01-25
| | | | | | | | | | | | Make `smart` extension work in LaTeX/ConTeXt writers instead. Instead of `-t latex --no-tex-ligatures`, do `-t latex-smart`.
| * Made `smart` extension default for pandoc markdown.John MacFarlane2017-01-25
| | | | | | | | Updated tests.
| * Make the `smart` extension affect the Markdown writer.John MacFarlane2017-01-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Thus, to "unsmartify" something that has been parsed as smart by pandoc, you can use `-t markdown+smart`, and straight quotes will be produced instead of curly quotes, etc. Example: % pandoc -f latex -t markdown+smart ``hi''---ok ^D "hi"---ok
| * Removed readerOldDashes and --old-dashes option, added old_dashes extension.John MacFarlane2017-01-25
| | | | | | | | API change. CLI option change.
| * Removed readerSmart and the --smart option; added Ext_smart extension.John MacFarlane2017-01-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now you will need to do -f markdown+smart instead of -f markdown --smart This change opens the way for writers, in addition to readers, to be sensitive to +smart, but this change hasn't yet been made. API change. Command-line option change. Updated manual.
| * 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
|