summaryrefslogtreecommitdiff
path: root/README
Commit message (Collapse)AuthorAge
...
| * | 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
| * | Change variable to polyglossia-lang.name and .optionsmb212015-10-07
| | | | | | | | | | | | closes #2437
* | | Man template improvements:John MacFarlane2015-10-10
| | | | | | | | | | | | | | | | | | | | | - Added comment stating that the page is autogenerated by pandoc, giving version. - Added `adjusting` and `hyphenate` variables. - Documented new variables.
* | | Correct `setspace` package usage in README.Andrew Dunning2015-10-08
| | | | | | | | | Template configured to set `setstretch` directly rather than package options.
* | | Improve CSL documentation in README.Andrew Dunning2015-10-08
| | |
* | | Improve links and cross-references in README.Andrew Dunning2015-10-08
|/ /
* | Minor change in README: and -> or.John MacFarlane2015-10-05
| | | | | | | | We never need both polyglossia and babel.
* | Revise variables discussion in README.Andrew Dunning2015-10-05
| |
* | Template updates.John MacFarlane2015-10-03
| | | | | | | | | | | | | | Beamer: added `innertheme`, `outertheme` variables. LaTeX: added `mainfontoptions`, `sansfontoptions`, `monofontoptions`, `mathfontoptions`, `fontfamilyoptions`.
* | Merge pull request #2419 from mb21/bidiJohn MacFarlane2015-09-26
|\ \ | | | | | | Support bidirectional text output with XeLaTeX, ConTeXt and HTML
| * | Support bidirectional text output with XeLaTeX, ConTeXt and HTMLmb212015-09-26
| | | | | | | | | | | | closes #2191
* | | Slightly improved description of citation locators in README.John MacFarlane2015-09-26
| | |
* | | Give details of locator termsnickbart19802015-09-26
|/ /
* | Merge pull request #2369 from mb21/language-variablesJohn MacFarlane2015-09-22
|\ \ | | | | | | `lang` variable is now in BCP47 format
| * | `lang` variable is now in BCP47 formatmb212015-08-20
| | | | | | | | | | | | strings are converted for LaTeX and ConTeXt output, closes #1614
* | | Removed obsolete reference to default.csl.John MacFarlane2015-08-25
|/ / | | | | | | | | | | | | | | | | | | | | | | | | Closes #2372. @cinaeco as the pandoc-citeproc man page describes, the current behavior if no style is specified is to look in `~/.csl/chicago-author-date.csl`, and if nothing is found there, to use a default version of chicago-author-date.csl. You may want to open a separate issue on jgm/pandoc-citeproc suggesting the use of `default.csl` rather than `chicago-author-date.csl`. I agree that this would make sense.
* | Added `--bash-completion` option.John MacFarlane2015-08-13
| | | | | | | | | | | | | | | | This generates a bash completion script. To use: eval "$(pandoc --bash-completion)"
* | Clarified what is "out of scope" in README and CONTRIBUTING.md.John MacFarlane2015-08-08
| |
* | Clarify docs on block quotes.John MacFarlane2015-08-06
| | | | | | | | | | | | The space after `>` is optional. Closes #2346.
* | README: Added space after backslash in image example.John MacFarlane2015-07-26
| | | | | | | | See #2329.
* | Merge pull request #1689 from kuribas/masterJohn MacFarlane2015-07-25
|\ \ | |/ |/| Use '=' instead of '#' for atx-style headers in markdown+lhs.
| * Use '=' instead of '#' for atx-style headers in markdown+lhs.Kristof Bastiaensen2014-10-14
| |
* | Updated README and cabal description for ODT reader.John MacFarlane2015-07-23
| |