summaryrefslogtreecommitdiff
path: root/README
Commit message (Collapse)AuthorAge
* 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
| | |
| * | Text.Pandoc.Options: modifications for image attributes.John MacFarlane2015-07-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added `Ext_common_link_attributes` constructor to `Extension` (for link and image attributes). * Added this to `pandocExtensions` and `phpMarkdownExtraExtensions`. * Added `writerDpi` to `WriterOptions`. * pandoc.hs: Added `--dpi` option. * Updated README for `--dpi` and `common_link_attributes` extension. Patch due to mb21, with some modifications: `writerDpi` is now an `Int` rather than a `Double`.
* | | Merge pull request #2509 from adunning/patch-2John MacFarlane2015-11-19
|\ \ \ | | | | | | | | Update LaTeX/ConTeXt link colour usage in README.
| * | | Update LaTeX/ConTeXt link colour usage.Andrew Dunning2015-11-14
| | | |
* | | | Rationalized behavior of --no-tex-ligatures and --smart.John MacFarlane2015-11-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | Added 'navigation' variable to beamer template.John MacFarlane2015-11-17
| | | | | | | | | | | | | | | | | | | | | | | | Valid values are `empty` (the default), `horizontal`, `vertical`, and `frame`. Note that this changes the default behavior from `horizontal` to `empty`. Closes #2543.
* | | | Use generic example.com link in README and changelog.John MacFarlane2015-11-16
| | | |
* | | | Fix math cross-reference.Andrew Dunning2015-11-14
| | | |
* | | | Added note about default for --email-obfuscation.John MacFarlane2015-11-14
| | | | | | | | | | | | | | | | See #2528.
* | | | Added `emoji` extension to Markdown.John MacFarlane2015-11-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is enabled by default in `markdown_github`. Added `Ext_emoji` to `Extension` in `Text.Pandoc.Options` (API change). Closes #2523.
* | | | Added Arata Mizuki to contributor list.John MacFarlane2015-11-12
| | | |
* | | | Updated date on README.John MacFarlane2015-11-12
| | | |
* | | | README: consistent capitalization for pandoc and Markdown.John MacFarlane2015-11-12
| | | |
* | | | EPUB writer: don't download linked media when `data-external` attribute set.John MacFarlane2015-11-12
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge pull request #2472 from adunning/patch-1John MacFarlane2015-11-04
|\ \ \ | | | | | | | | Update LaTeX/ConTeXt variable usage in README.
| * | | Note expanded support for abstract, keywords.Andrew Dunning2015-10-23
| | | | | | | | | | | | Based on <https://github.com/jgm/pandoc-templates/pull/144>, <https://github.com/jgm/pandoc-templates/pull/142>.
| * | | Update LaTeX/ConTeXt variable usage in README.Andrew Dunning2015-10-22
| | | | | | | | | | | | Accounts for changes in https://github.com/jgm/pandoc-templates/pull/141.
* | | | Textile reader: don't do smart punctuation unless explicitly asked.John MacFarlane2015-10-30
|/ / / | | | | | | | | | | | | | | | | | | | | | 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.
* | | Add new variables for ConTeXt template to README.Andrew Dunning2015-10-20
| | |
* | | Update date on README.John MacFarlane2015-10-20
| | |
* | | Allow use of ConTeXt to generate PDFs.John MacFarlane2015-10-20
| | | | | | | | | | | | | | | | | | | | | | | | pandoc my.md -t context -o my.pdf will now create a PDF using ConTeXt rather than LaTeX. Closes #2463.
* | | Merge pull request #2458 from mb21/lang-inlinesJohn MacFarlane2015-10-19
|\ \ \ | | | | | | | | LaTeX and ConTeXt writers: support lang attribute on divs and spans
| * | | LaTeX and ConTeXt writers: support lang attribute on divs and spansmb212015-10-18
| | |/ | |/| | | | | | | | | | For LaTeX, also collect lang and dir attributes on spans and divs to set the lang, otherlangs and dir variables if they aren’t set already. See #895.
* / | Fixed auto_identifiers examplesBenoit Schweblin2015-10-18
|/ /
* | Support all frame attributes in Beamer.John MacFarlane2015-10-15
| |
* | Update slides variables in README.Andrew Dunning2015-10-14
| | | | | | This reflects the inclusion of all reveal.js variables in <https://github.com/jgm/pandoc-templates/pull/134>.
* | Add new LaTeX variables to README.Andrew Dunning2015-10-14
| |
* | reveal.js template: add controls, progress variables.John MacFarlane2015-10-10
| | | | | | | | Thanks to Grégoire Pineau.
* | Merge pull request #2441 from mb21/polyglossia-langJohn MacFarlane2015-10-10
|\ \ | | | | | | Change variable to polyglossia-lang.name and .options