aboutsummaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Collapse)Author
2016-07-20Rename README to MANUAL.txtAlbert Krewinkel
2016-07-17Fixd README date.1.17.2John MacFarlane
2016-07-14Fixed duplicate reference in README.John MacFarlane
2016-07-01Added ZimWiki format to documentation and cabal description.Alex Ivkin
2016-06-25Added `secnumdepth` variable to LaTeX template.John MacFarlane
Closes #2920.
2016-06-24Make --webtex work with the Markdown writer.John MacFarlane
Closes #1177. This is a convenient option for people using websites whose Markdown flavors don't provide for math.
2016-06-23README: update to include track-changes comments.Jesse Rosenthal
2016-06-20Changed email-obfuscation default to no obfuscation.John MacFarlane
- `writerEmailObfuscation` in `defaultWriterOptions` is now `NoObfuscation` - the default for the command-line `--email-obfuscation` option is now `none`. Closes #2988.
2016-06-14Document Org mode as a format containing raw HTMLAlbert Krewinkel
Raw HTML is kept when the output format is Emacs Org mode.
2016-06-12Document Org mode as a format containing raw TeXAlbert Krewinkel
Raw TeX is kept verbatim when the output format is Emacs Org mode.
2016-06-12Document MultiMarkdown as input/output formatAlbert Krewinkel
MultiMarkdown was only mentioned as a supported Markdown dialect but not as a possible input or output format. A brief mention is added everywhere the other supported markdown dialects are mentioned. This closes #2973.
2016-06-04Updated date in README.John MacFarlane
2016-06-04Updated AUTHORS in README.John MacFarlane
2016-05-09README: clarified documentation of `implicit_header_references`.John MacFarlane
Closes #2904.
2016-05-01README: Added docbook5 as output format.John MacFarlane
2016-04-08README - improved documentation of --columns option.John MacFarlane
2016-03-21Improved documentation of templates.John MacFarlane
Note that there's no docx template. Closes #2797.
2016-03-20Fixed link to TEI in README.John MacFarlane
2016-03-19Added `institute` variable in LaTeX and Beamer templates.John MacFarlane
2016-03-18README: document that --toc works with docx.John MacFarlane
Closes #2787.
2016-03-15README: Add description of `--file-scope` option.Jesse Rosenthal
2016-03-06Update READMEickc
2016-02-21Update README to reflect 4112b32.Jesse Rosenthal
We don't infer `--chapters` if `article` document option is set. For example: `\documentclass[article]{memoir}`.
2016-02-21Fix typos in ReadmePrayag Verma
Remove extra `be` `overriden` → `overridden`
2016-02-09Removed `tex_math_single_backslash` from `markdown_github` options.John MacFarlane
Closes #2707.
2016-01-19Added some entity tests in Markdown reader tests.John MacFarlane
Change types of divs. From Docbook "sect#" and "simplesect" to "level#" and "section." Add tests. Add mention of TEI to README. Small changes to TEI writer.
2016-01-13Updated README date.John MacFarlane
2016-01-10README - changed date.John MacFarlane
2015-12-22Updated README with margin and papersize variables.John MacFarlane
2015-12-21Added preliminary support for PDF creation via wkhtmltopdf.John MacFarlane
To use this: pandoc -t html5 -o result.pdf (and add `--mathjax` if you have math.)
2015-12-20Removed hyphenThomas Hodgson
2015-12-19LaTeX/Beamer template changes (Thomas Hodgson):John MacFarlane
* Added `thanks` variable * Use `parskip.sty` when `indent` isn't set (fall back to using `setlength` as before if `parskip.sty` isn't available). * Use `biblio-style` with biblatex. * Added `biblatexoptions` variable. * Added `section-titles` variable (defaults to true) to enable/suppress section title pages in beamer slide shows. * Moved beamer themes after fonts, so that themes can change fonts. (Previously the fonts set were being clobbered by lmodern.sty.)
2015-12-19Merge branch 'master' of https://github.com/AndreasLoow/pandoc into ↵John MacFarlane
AndreasLoow-master
2015-12-19README: reflowed to avoid overly long lines.John MacFarlane
2015-12-19Explain how to get `subtitle` to work with latex article etc.John MacFarlane
Thanks to Andrew Dunning.
2015-12-17Document change to subtitle in LaTeX.Andrew Dunning
One could also tell users to add this to header-includes if `subtitle` is desired for `article` and so forth, but I will leave it out for now for the sake of simplicity: ```tex \providecommand{\subtitle}[1]{% \usepackage{titling} \posttitle{% \par\large#1\end{center}} } ```
2015-12-14Removed "compatibility mode" when called as hsmarkdown.John MacFarlane
2015-12-12Implemented `east_asian_line_breaks` extension.John MacFarlane
Text.Pandoc.Options: Added `Ext_east_asian_line_breaks` constructor to `Extension` (API change). This extension is like `ignore_line_breaks`, but smarter -- it only ignores line breaks between two East Asian wide characters. This makes it better suited for writing with a mix of East Asian and non-East Asian scripts. Closes #2586.
2015-12-11Removed deprecated options `--offline` and `--html5`.John MacFarlane
These have been deprecated forever.
2015-12-11Implemented SoftBreak and new `--wrap` option.John MacFarlane
Added threefold wrapping option. * Command line option: deprecated `--no-wrap`, added `--wrap=[auto|none|preserve]` * Added WrapOption, exported from Text.Pandoc.Options * Changed type of writerWrapText in WriterOptions from Bool to WrapOption. * Modified Text.Pandoc.Shared functions for SoftBreak. * Supported SoftBreak in writers. * Updated tests. * Updated README. Closes #1701.
2015-12-03Markdown reader: Improved pipe table relative widths.John MacFarlane
Previously pipe table columns got relative widths (based on the header underscore lines) when the source of one of the rows was greater in width than the column width. This gave bad results in some cases where much of the width of the row was due to nonprinting material (e.g. link URLs). Now pandoc only looks at printable width (the width of a plain string version of the source), which should give better results. Thanks to John Muccigrosso for bringing up the issue.
2015-11-24s/mb21/Mauro Bieg/ in README contributor list and changelog.John MacFarlane
2015-11-24Updated README for new pipe table behavior.John MacFarlane
2015-11-23Define a `meta-json` variable for all writers.John MacFarlane
This contains a JSON version of all the metadata, in the format selected for the writer. So, for example, to get just the YAML metadata, you can run pandoc with the following custom template: $meta-json$ Closes #2019. The intent is to make it easier for static site generators and other tools to get at the metadata.
2015-11-23Document limitations of --self-contained.John MacFarlane
See #2553.
2015-11-21Improved Citations section of README.John MacFarlane
Added information about `link-citations` and a link to the pandoc-citeproc man page. Closes #2551.
2015-11-19Renamed link attribute extensions.John MacFarlane
* Old `link_attributes` -> `mmd_link_attributes` * Recently added `common_link_attributes` -> `link_attributes` Note: this change could break some existing workflows.
2015-11-19Merge branch 'new-image-attributes' of https://github.com/mb21/pandoc into ↵John MacFarlane
mb21-new-image-attributes * Bumped version to 1.16. * Added Attr field to Link and Image. * Added `common_link_attributes` extension. * Updated readers for link attributes. * Updated writers for link attributes. * Updated tests * Updated stack.yaml to build against unreleased versions of pandoc-types and texmath. * Fixed various compiler warnings. Closes #261. TODO: * Relative (percentage) image widths in docx writer. * ODT/OpenDocument writer (untested, same issue about percentage widths). * Update pandoc-citeproc.
2015-11-19Merge pull request #2509 from adunning/patch-2John MacFarlane
Update LaTeX/ConTeXt link colour usage in README.
2015-11-19Rationalized behavior of --no-tex-ligatures and --smart.John MacFarlane
This change makes `--no-tex-ligatures` affect the LaTeX reader as well as the LaTeX and ConTeXt writers. If it is used, the LaTeX reader will parse characters `` ` ``, `'`, and `-` literally, rather than parsing ligatures for quotation marks and dashes. And the LaTeX writer will print unicode quotation mark and dash characters literally, rather than converting them to the standard ASCII ligatures. Note that `--smart` has no affect on the LaTeX reader. `--smart` is still the default for all input formats when LaTeX or ConTeXt is the output format, *unless* `--no-tex-ligatures` is used. Some examples to illustrate the logic: ``` % echo "'hi'" | pandoc -t latex `hi' % echo "'hi'" | pandoc -t latex --no-tex-ligatures 'hi' % echo "'hi'" | pandoc -t latex --no-tex-ligatures --smart ‘hi’ % echo "'hi'" | pandoc -f latex --no-tex-ligatures <p>'hi'</p> % echo "'hi'" | pandoc -f latex <p>’hi’</p> ``` Closes #2541.