summaryrefslogtreecommitdiff
path: root/README
Commit message (Collapse)AuthorAge
* Rename README to MANUAL.txtAlbert Krewinkel2016-07-20
|
* Fixd README date.John MacFarlane2016-07-17
|
* Fixed duplicate reference in README.John MacFarlane2016-07-14
|
* Added ZimWiki format to documentation and cabal description.Alex Ivkin2016-07-01
|
* Added `secnumdepth` variable to LaTeX template.John MacFarlane2016-06-25
| | | | Closes #2920.
* Make --webtex work with the Markdown writer.John MacFarlane2016-06-24
| | | | | Closes #1177. This is a convenient option for people using websites whose Markdown flavors don't provide for math.
* README: update to include track-changes comments.Jesse Rosenthal2016-06-23
|
* Changed email-obfuscation default to no obfuscation.John MacFarlane2016-06-20
| | | | | | | | | - `writerEmailObfuscation` in `defaultWriterOptions` is now `NoObfuscation` - the default for the command-line `--email-obfuscation` option is now `none`. Closes #2988.
* Document Org mode as a format containing raw HTMLAlbert Krewinkel2016-06-14
| | | | Raw HTML is kept when the output format is Emacs Org mode.
* Document Org mode as a format containing raw TeXAlbert Krewinkel2016-06-12
| | | | Raw TeX is kept verbatim when the output format is Emacs Org mode.
* Document MultiMarkdown as input/output formatAlbert Krewinkel2016-06-12
| | | | | | | | 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.
* Updated date in README.John MacFarlane2016-06-04
|
* Updated AUTHORS in README.John MacFarlane2016-06-04
|
* README: clarified documentation of `implicit_header_references`.John MacFarlane2016-05-09
| | | | Closes #2904.
* README: Added docbook5 as output format.John MacFarlane2016-05-01
|
* README - improved documentation of --columns option.John MacFarlane2016-04-08
|
* Improved documentation of templates.John MacFarlane2016-03-21
| | | | | Note that there's no docx template. Closes #2797.
* Fixed link to TEI in README.John MacFarlane2016-03-20
|
* Added `institute` variable in LaTeX and Beamer templates.John MacFarlane2016-03-19
|
* README: document that --toc works with docx.John MacFarlane2016-03-18
| | | | Closes #2787.
* README: Add description of `--file-scope` option.Jesse Rosenthal2016-03-15
|
* Update READMEickc2016-03-06
|
* Update README to reflect 4112b32.Jesse Rosenthal2016-02-21
| | | | | We don't infer `--chapters` if `article` document option is set. For example: `\documentclass[article]{memoir}`.
* Fix typos in ReadmePrayag Verma2016-02-21
| | | | Remove extra `be` `overriden` → `overridden`
* Removed `tex_math_single_backslash` from `markdown_github` options.John MacFarlane2016-02-09
| | | | Closes #2707.
* Added some entity tests in Markdown reader tests.John MacFarlane2016-01-19
| | | | | | | | | | | | | 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.
* Updated README date.John MacFarlane2016-01-13
|
* README - changed date.John MacFarlane2016-01-10
|
* Updated README with margin and papersize variables.John MacFarlane2015-12-22
|
* Added preliminary support for PDF creation via wkhtmltopdf.John MacFarlane2015-12-21
| | | | | | | | To use this: pandoc -t html5 -o result.pdf (and add `--mathjax` if you have math.)
* Removed hyphenThomas Hodgson2015-12-20
|
* LaTeX/Beamer template changes (Thomas Hodgson):John MacFarlane2015-12-19
| | | | | | | | | | | | | | | * 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.)
* Merge branch 'master' of https://github.com/AndreasLoow/pandoc into ↵John MacFarlane2015-12-19
|\ | | | | | | AndreasLoow-master
| * Consider header files when determining whether to use csquotes.Andreas Lööw2015-10-17
| |
* | README: reflowed to avoid overly long lines.John MacFarlane2015-12-19
| |
* | Explain how to get `subtitle` to work with latex article etc.John MacFarlane2015-12-19
| | | | | | | | Thanks to Andrew Dunning.
* | Document change to subtitle in LaTeX.Andrew Dunning2015-12-17
| | | | | | | | | | | | | | | | | | | | | | 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}} } ```
* | Removed "compatibility mode" when called as hsmarkdown.John MacFarlane2015-12-14
| |
* | Implemented `east_asian_line_breaks` extension.John MacFarlane2015-12-12
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Removed deprecated options `--offline` and `--html5`.John MacFarlane2015-12-11
| | | | | | | | These have been deprecated forever.
* | Implemented SoftBreak and new `--wrap` option.John MacFarlane2015-12-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Markdown reader: Improved pipe table relative widths.John MacFarlane2015-12-03
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | s/mb21/Mauro Bieg/ in README contributor list and changelog.John MacFarlane2015-11-24
| |
* | Updated README for new pipe table behavior.John MacFarlane2015-11-24
| |
* | Define a `meta-json` variable for all writers.John MacFarlane2015-11-23
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Document limitations of --self-contained.John MacFarlane2015-11-23
| | | | | | | | See #2553.
* | Improved Citations section of README.John MacFarlane2015-11-21
| | | | | | | | | | | | | | Added information about `link-citations` and a link to the pandoc-citeproc man page. Closes #2551.
* | Renamed link attribute extensions.John MacFarlane2015-11-19
| | | | | | | | | | | | | | * Old `link_attributes` -> `mmd_link_attributes` * Recently added `common_link_attributes` -> `link_attributes` Note: this change could break some existing workflows.
* | Merge branch 'new-image-attributes' of https://github.com/mb21/pandoc into ↵John MacFarlane2015-11-19
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | Updated readers, writers and README for link attributemb212015-08-07
| | |