aboutsummaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Collapse)AuthorFilesLines
2016-05-01README: Added docbook5 as output format.John MacFarlane1-22/+22
2016-04-08README - improved documentation of --columns option.John MacFarlane1-3/+3
2016-03-21Improved documentation of templates.John MacFarlane1-3/+9
Note that there's no docx template. Closes #2797.
2016-03-20Fixed link to TEI in README.John MacFarlane1-1/+1
2016-03-19Added `institute` variable in LaTeX and Beamer templates.John MacFarlane1-0/+4
2016-03-18README: document that --toc works with docx.John MacFarlane1-2/+2
Closes #2787.
2016-03-15README: Add description of `--file-scope` option.Jesse Rosenthal1-0/+8
2016-03-06Update READMEickc1-1/+1
2016-02-21Update README to reflect 4112b32.Jesse Rosenthal1-3/+4
We don't infer `--chapters` if `article` document option is set. For example: `\documentclass[article]{memoir}`.
2016-02-21Fix typos in ReadmePrayag Verma1-3/+3
Remove extra `be` `overriden` → `overridden`
2016-02-09Removed `tex_math_single_backslash` from `markdown_github` options.John MacFarlane1-2/+1
Closes #2707.
2016-01-19Added some entity tests in Markdown reader tests.John MacFarlane1-7/+8
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 MacFarlane1-1/+1
2016-01-10README - changed date.John MacFarlane1-1/+1
2015-12-22Updated README with margin and papersize variables.John MacFarlane1-2/+15
2015-12-21Added preliminary support for PDF creation via wkhtmltopdf.John MacFarlane1-5/+6
To use this: pandoc -t html5 -o result.pdf (and add `--mathjax` if you have math.)
2015-12-20Removed hyphenThomas Hodgson1-1/+1
2015-12-19LaTeX/Beamer template changes (Thomas Hodgson):John MacFarlane1-1/+12
* 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 MacFarlane1-6/+7
AndreasLoow-master
2015-12-19README: reflowed to avoid overly long lines.John MacFarlane1-5/+7
2015-12-19Explain how to get `subtitle` to work with latex article etc.John MacFarlane1-2/+12
Thanks to Andrew Dunning.
2015-12-17Document change to subtitle in LaTeX.Andrew Dunning1-1/+4
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 MacFarlane1-13/+0
2015-12-12Implemented `east_asian_line_breaks` extension.John MacFarlane1-1/+9
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 MacFarlane1-9/+0
These have been deprecated forever.
2015-12-11Implemented SoftBreak and new `--wrap` option.John MacFarlane1-3/+12
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 MacFarlane1-3/+4
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 MacFarlane1-1/+1
2015-11-24Updated README for new pipe table behavior.John MacFarlane1-4/+4
2015-11-23Define a `meta-json` variable for all writers.John MacFarlane1-1/+4
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 MacFarlane1-1/+5
See #2553.
2015-11-21Improved Citations section of README.John MacFarlane1-3/+10
Added information about `link-citations` and a link to the pandoc-citeproc man page. Closes #2551.
2015-11-19Renamed link attribute extensions.John MacFarlane1-5/+5
* 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 MacFarlane1-5/+62
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 MacFarlane1-12/+14
Update LaTeX/ConTeXt link colour usage in README.
2015-11-19Rationalized behavior of --no-tex-ligatures and --smart.John MacFarlane1-10/+14
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.
2015-11-17Added 'navigation' variable to beamer template.John MacFarlane1-0/+5
Valid values are `empty` (the default), `horizontal`, `vertical`, and `frame`. Note that this changes the default behavior from `horizontal` to `empty`. Closes #2543.
2015-11-16Use generic example.com link in README and changelog.John MacFarlane1-2/+3
2015-11-14Fix math cross-reference.Andrew Dunning1-1/+1
2015-11-14Update LaTeX/ConTeXt link colour usage.Andrew Dunning1-12/+14
2015-11-14Added note about default for --email-obfuscation.John MacFarlane1-1/+2
See #2528.
2015-11-13Added `emoji` extension to Markdown.John MacFarlane1-1/+5
This is enabled by default in `markdown_github`. Added `Ext_emoji` to `Extension` in `Text.Pandoc.Options` (API change). Closes #2523.
2015-11-12Added Arata Mizuki to contributor list.John MacFarlane1-0/+1
2015-11-12Updated date on README.John MacFarlane1-1/+1
2015-11-12README: consistent capitalization for pandoc and Markdown.John MacFarlane1-95/+95
2015-11-12EPUB writer: don't download linked media when `data-external` attribute set.John MacFarlane1-1/+18
By default pandoc downloads all linked media and includes it in the EPUB container. This can be disabled by setting `data-external` on the tags linking to media that should not be downloaded. Example: <audio controls="1"> <source src="http://www.sixbarsjail.it/tmp/bach_toccata.mp3" type="audio/mpeg"></source> </audio> Closes #2473.
2015-11-04Merge pull request #2472 from adunning/patch-1John MacFarlane1-15/+21
Update LaTeX/ConTeXt variable usage in README.
2015-10-30Textile reader: don't do smart punctuation unless explicitly asked.John MacFarlane1-4/+2
Closes #2480. Note that although smart punctuation is part of the textile spec, it's not always wanted when converting from textile to, say, Markdown. So it seems better to make this an option.
2015-10-23Note expanded support for abstract, keywords.Andrew Dunning1-2/+2
Based on <https://github.com/jgm/pandoc-templates/pull/144>, <https://github.com/jgm/pandoc-templates/pull/142>.
2015-10-22Update LaTeX/ConTeXt variable usage in README.Andrew Dunning1-15/+21
Accounts for changes in https://github.com/jgm/pandoc-templates/pull/141.