aboutsummaryrefslogtreecommitdiff
path: root/MANUAL.txt
AgeCommit message (Collapse)AuthorFilesLines
2018-06-25MANUAL: Removed spurious 'LaTeX' from list.John MacFarlane1-1/+1
2018-06-25MANUAL: document -F as alias for --filter.John MacFarlane1-1/+1
Thanks to Gandalf Saxe for pointing out the omission.
2018-06-24Update manual on how math is rendered in LaTeX.John MacFarlane1-1/+6
2018-06-14MANUAL.txt add proxy description (#4707)Mauro Bieg1-1/+2
closes #4131
2018-06-13MANUAL: Clarify that --toc requires --standalone. See #4703.John MacFarlane1-2/+3
2018-06-12Beamer: Allow "noframenumbering" option (#4696)Raymond Ehlers1-1/+1
As noted [here](https://tex.stackexchange.com/a/49805) ([beamer commit here](https://github.com/josephwright/beamer/commit/ff70090f36b631667b472cfe675fc3514fe46f7e)), `noframenumbering` is an undocumented, but long existing option to disable frame numbering for a particular slide. This is useful to avoid numbering backup slides.
2018-06-12Allow --template to take a URL argument.John MacFarlane1-3/+3
2018-06-12Citation styles link updated (#4699)wiefling1-1/+1
2018-05-10Update manual date and man page.John MacFarlane1-1/+1
2018-05-09MANUAL: clarify pipe table width calculation (#4630)Mauro Bieg1-4/+6
closes #4520
2018-05-09Restored and undeprecated gladtex for HTML math.John MacFarlane1-0/+12
- Added `GladTeX` constructor to `Text.Pandoc.Options.HTMLMathMethod` [API change, reverts removal in v2.2] - Restored and undeprecated `--gladtex` option, removed in v2.2. Closes #4607.
2018-05-08MANUAL: clarify truthiness in template variables (#4631)Mauro Bieg1-4/+18
closes #2281
2018-05-03Note on the effect of --standalone on native output.John MacFarlane1-1/+2
2018-05-02MANUAL.txt fix two internal linksMauro Bieg1-2/+2
2018-04-26Update man page and MANUAL date.John MacFarlane1-1/+1
2018-04-26Document FB2 reader.John MacFarlane1-0/+1
2018-04-26MANUAL: explain where you can put lua filters.John MacFarlane1-0/+8
2018-04-26Make `--ascii` work for all XML formats (ICML, OPML, JATS,...).John MacFarlane1-3/+4
Also document in manual.
2018-04-25Removed deprecated ancient HTML math methods.John MacFarlane1-46/+0
Removed `--latexmathml`, `--gladtex`, `--mimetex`, `--jsmath`, `-m`, `--asciimathml` options. Removed `JsMath`, `LaTeXMathML`, and `GladTeX` constructors from `Text.Pandoc.Options.HTMLMathMethod` [API change]. Removed unneeded data file LaTeXMathML.js and updated tests. Bumped version to 2.2.
2018-04-22New README template, take in/out formats from manual.John MacFarlane1-8/+8
2018-04-22MANUAL: consolidate input/output format documentation (#4577)Mauro Bieg1-113/+146
* MANUAL: consolidate format lists * MANUAL: make formats a proper list
2018-04-15MANUAL.txt: Don't say that `empty_paragraphs` affects markdown output.John MacFarlane1-1/+1
It doesn't. Closes #4540.
2018-04-02Fix typo.John MacFarlane1-3/+3
2018-03-30Add -V beameroption variable (#4359)Étienne BERSAC1-0/+3
* LaTeX template: Use `pgfpages` package; this is needed for notes on second screen in beamer * LaTeX template: Add `beameroption` variable in template
2018-03-27MANUAL: clarify template vs metadata variables (#4501)Mauro Bieg1-10/+11
2018-03-21MANUAL.txt fix raw content example (#4479)Mauro Bieg1-1/+2
2018-03-19MANUAL: specify that you use html for raw output in epub.John MacFarlane1-3/+4
2018-03-19Small improvement of doc change in #4472.John MacFarlane1-1/+4
Mention other formats as well where a different name is needed.
2018-03-19Add examples for raw docx blocks (#4472)Tristan Stenner1-1/+12
The documentation states that the target format name should match the output format, which isn't the case for `docx`/`openxml`. This PR adds a remark and a frequently requested example (inserting a pagebreak in docx output) to the documentation.
2018-03-17Manual formatting tweaks.John MacFarlane1-11/+14
2018-03-17ConTeXt template: pdfa variable to generate PDF/A (#4294)Henri Menke1-0/+10
The resulting PDF can be verified using the Apache PDFBox preflight app. ``` $ java -jar preflight-app-2.0.8.jar test.pdf The file test.pdf is a valid PDF/A-1b file ``` Instructions on how to install the ICC profiles on ConTeXt standalone can be found in the wiki: <http://wiki.contextgarden.net/PDFX#ICC_profiles>. If the ICC profiles are not available the log will contain messages like these ``` backend > profiles > profile specification 'sRGB.icc' loaded from '/usr/local/texlive/2017/texmf-dist/tex/context/colors/icc/context/colorprofiles.xml' backend > profiles > error, couldn't locate profile 'srgb.icc' backend > profiles > no default profile 'srgb.icc' for colorspace 'rgb' backend > profiles > profile specification 'sRGB IEC61966-2.1' loaded from '/usr/local/texlive/2017/texmf-dist/tex/context/colors/icc/context/colorprofiles.xml' backend > profiles > error, couldn't locate profile 'srgb.icc' backend > profiles > invalid output intent 'sRGB IEC61966-2.1' ``` and the resulting PDF will not be valid PDF/A: ``` $ java -jar preflight-app-2.0.8.jar test.pdf The file test.pdf is not a valid PDF/A-1b file, error(s) : 2.4.3 : Invalid Color space, The operator "g" can't be used without Color Profile on page 1 2.4.3 : Invalid Color space, The operator "G" can't be used without Color Profile on page 1 2.4.3 : Invalid Color space, /DeviceGray default for operator "TJ" can't be used without Color Profile on page 1 2.4.3 : Invalid Color space, /DeviceGray default for operator "TJ" can't be used without Color Profile on page 1 2.4.3 : Invalid Color space, The operator "g" can't be used without Color Profile on page 1 2.4.3 : Invalid Color space, The operator "G" can't be used without Color Profile on page 1 2.4.3 : Invalid Color space, /DeviceGray default for operator "TJ" can't be used without Color Profile on page 1 ``` However, the PDF will still be generated and the "errors" shown in the log do not break anything.
2018-03-17Update man page.John MacFarlane1-1/+1
2018-03-13Add instructions for background images reveal.js (#4325)John Muccigrosso1-0/+41
2018-03-02Update man page and date on MANUAL.John MacFarlane1-1/+1
2018-02-23Docx reader: Don't look up dependant run styles if +styles is enabled.Jesse Rosenthal1-2/+2
It makes more sense not to interpret -- otherwise using the original document as the reference-doc would produce two of everything: the interpreted version and the uninterpreted style version.
2018-02-22MANUAL.txt: Document incremental and nonincremental divs.Jesse Rosenthal1-4/+28
Blockquoted lists are still described, but fenced divs are presented in preference.
2018-02-22Docx reader: Move pandoc inline styling inside custom-style spanJesse Rosenthal1-2/+2
Previously Emph, Strong, etc were outside the custom-style span. This moves them inside in order to make it easier to write filters that act on the formatting in these contents. Tests and MANUAL example are changed to match.
2018-02-22Docx reader: Avoid repeated spans in custom styles.Jesse Rosenthal1-4/+3
The previous commit had a bug where custom-style spans would be read with every recurrsion. This fixes that, and changes the example given in the manual.
2018-02-22MANUAL: add documentation on custom styles.Jesse Rosenthal1-2/+64
Discuss workflow of using input document as reference.docx. We also split the "Custom styles" section into two parts: input and output.
2018-02-20MANUAL.txt: fix typo.Jesse Rosenthal1-1/+1
2018-02-20MANUAL.txt: A bit of clarification on speaker notes.Jesse Rosenthal1-1/+4
Make it clear that pressing `s` is just for reveal.js.
2018-02-20MANUAL.txt: Add instructions for using pptx reference-docsJesse Rosenthal1-0/+24
2018-02-18MANUAL: add reference to pptx support for speaker notes.Jesse Rosenthal1-2/+2
2018-01-28MANUAL.txt: self-contained implies standalone (#4304)Daniel Lublin1-7/+7
2018-01-21Delete excess whitespaceJohn MacFarlane1-1/+1
2018-01-21Merge pull request #4237 from sitewisely/header_and_footerJohn MacFarlane1-2/+2
Add header and footer parameters for wkhtmltopdf
2018-01-18Powerpoint writer: Implement syntax highlightingJesse Rosenthal1-5/+5
This also necessitated implementing colors and underlining, though there is currently no way to produce these from markdown. Note that background colors can't be implemented in PowerPoint, so highlighting styles that require these will be incomplete.
2018-01-18Replaced tabs with spaces in MANUAL.txt.John MacFarlane1-157/+157
@jkr - the tabs were inserted by your 624abeec5c3b9f5c27cffe6d157617aa97367e92, presumably through some automatic setting in your editor that replaced 8 spaces with a tab. This messed up indented formatting in the manual.
2018-01-15ConTeXt writer: Use xtables instead of Tables (#4223)Henri Menke1-0/+8
- Default to xtables for context output. - Added `ntb` extension (affecting context writer only) to use Natural Tables instead. - Added `Ext_ntb` constructor to `Extension` (API change).
2018-01-14Clarified `latex_macros` extension.John MacFarlane1-4/+7