aboutsummaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Collapse)AuthorFilesLines
2011-12-29Made `html5` and `html5+lhs` output formats.John MacFarlane1-21/+22
Deprecated the `--html5`/`-5` flag. Use the output format instead.
2011-12-29Added 'beamer' as an output format.John MacFarlane1-18/+29
Beamer output uses the default LaTeX template, with some customizations via variables. Added `writerBeamer` to `WriterOptions`. Added `--beamer` option to `markdown2pdf`.
2011-12-27Added `--highlight-style` and `--no-highlight` options.John MacFarlane1-6/+17
2011-12-22Removed highlighting flag. Highlighting support is now standard.John MacFarlane1-5/+2
2011-12-17Use blaze-html instead of xhtml for HTML generation.John MacFarlane1-5/+0
* This is a breaking API change for `writeHtml`. * It introduces a new dependency on blaze-html. * Pandoc now depends on highlighting-kate >= 0.4, which also uses blaze-html. * The --ascii option has been removed, because of differences in blaze-html's and xhtml's escaping. * Pandoc will no longer transform leading newlines in code blocks to `<br/>` tags.
2011-11-27Added 'lang' variable to LaTeX template.John MacFarlane1-1/+1
Thanks to Magnus Therning for the suggestion.
2011-11-24--self-contained now works with `<video>` as well as `<img>`.John MacFarlane1-10/+10
2011-11-21Slight modification of --self-contained documentation.John MacFarlane1-9/+9
2011-11-21Documented `--self-contained` and modified documentation for `--offline`.John MacFarlane1-9/+20
2011-11-18Added asciidoc output to README.John MacFarlane1-3/+8
2011-11-11Implemented --citation-abbreviations option.John MacFarlane1-0/+16
Mostly due to Andrea Rossato.
2011-11-10Changed misleading documentation on markdown2pdf.John MacFarlane1-2/+1
markdown2pdf used to create a backup file if the output file exists; it doesn't any longer, but the documentation still said it does.
2011-10-28Clarified rule for first line of definition lists.John MacFarlane1-3/+5
Closes #310.
2011-10-26Fixed typo.John MacFarlane1-1/+1
2011-10-25HTML reader now recognizes DocBook block and inline tags.John MacFarlane1-4/+3
It was always possible to include raw DocBook tags in a markdown document, but now pandoc will be able to distinguish block from inline tags and behave accordingly. Thus, for example, <sidebar> hello </sidebar> will not be wrapped in `<para>` tags.
2011-10-04Updated README to remove mention of .bbx for bibliographies.John MacFarlane1-13/+12
2011-10-01Added dzslides output option.John MacFarlane1-20/+27
* Added DZSlides to HTMLSlideVariant. * Added support for dzslides in HTML writer. * Added dzslides template.
2011-09-09Fixed typo in READMEJohn MacFarlane1-1/+1
2011-08-03Note in README that --chapters is implicit when certain classes used.John MacFarlane1-1/+2
report, book, or memoir.
2011-07-30Changed date on README.John MacFarlane1-1/+1
2011-07-28Added s5-url and slidy-url variables, instead of hard-coding.John MacFarlane1-1/+8
If you want to put your slidy files in the slidy subdirectory, for example, you can do pandoc -t slidy -V slidy-url=slidy -s
2011-07-23Changed `--mathjax` to link to mathjax CDN by default.John MacFarlane1-1/+3
`--mathjax` now takes an optional URL argument. If it is not provided, pandoc links directly to the (secure) mathjax CDN. This is what they now recommend. Thanks to dsanson.
2011-07-23Use \enquote{..} for latex quotes if template uses csquotes package.John MacFarlane1-0/+3
This provides better support for foreign language quoting. Thanks to Andreas Wagner for the idea.
2011-07-22Added link to zotero styles page.John MacFarlane1-0/+1
2011-07-22Small documentation fix.John MacFarlane1-3/+3
2011-07-22Changed default template naming scheme.John MacFarlane1-5/+9
Instead of latex.template, we now have default.latex. An appropriate extension is added automatically if the value of `--template` has no extension. So, `pandoc --template=special -t latex` looks for `special.latex`, while `pandoc --template=special -t man` looks for `special.man`.
2011-07-22Deprecated `--xetex` option - it is no longer needed.John MacFarlane1-3/+0
Deprecated `writerXeTeX` and the `--xetex` option. The latex writer now produces a file that can be processed by latex, pdflatex, lualatex, or xelatex, so this option isn't needed. The option is still neded in markdown2pdf, however, which has been modified to take some options that aren't in pandoc.
2011-07-22Updated contributor list.John MacFarlane1-1/+2
2011-07-20Document pandoc-templates repository in README.John MacFarlane1-0/+7
2011-04-04Document --biblatex and --natbib options.John MacFarlane1-0/+6
2011-03-13Added --epub-cover-image option.John MacFarlane1-0/+4
API change: Added a parameter for the cover image path to writeEPUB. Followed best practices outlined in http://blog.threepress.org/2009/11/20/best-practices-in-epub-cover-images/
2011-03-09Fixed orgmode link.John MacFarlane1-1/+1
2011-02-06Added --ascii option.John MacFarlane1-0/+5
Currently supported only in HTML writer.
2011-02-05README: Added section on four-space rule for lists.John MacFarlane1-6/+35
Resolves Issue #283.
2011-02-05README: Clarified optional arguments on math options.John MacFarlane1-7/+10
2011-01-30Fixed misspelling in README.John MacFarlane1-1/+1
2011-01-29Updated some dates in documentation.John MacFarlane1-2/+2
2011-01-28Finished revising markdown description in README.John MacFarlane1-47/+155
2011-01-28Improved README on lists.John MacFarlane1-10/+123
2011-01-28Add possibility to use listings package for code blocks andJosef Svenningsson1-0/+3
inline code in the LaTeX writer.
2011-01-28More README improvements.John MacFarlane1-68/+111
2011-01-28Partial restructuring of README.John MacFarlane1-281/+466
Aim is to provide a complete markdown syntax description, including pandoc differences.
2011-01-28Refactored man pages.John MacFarlane1-11/+10
* Markdown syntax description from README now goes in pandoc_markdown.5. * Refactored man page construction functions, putting more of the work in MakeManPages.hs.
2011-01-20Added --normalize option.John MacFarlane1-0/+4
2011-01-16Documented --chapters in README.John MacFarlane1-0/+4
2011-01-11Improvements to --html5 support:John MacFarlane1-1/+1
+ <nav> for TOC, <figure> for figures, type attribute in <ol>. + Don't add math javascript in html5. + Use style attributes instead of deprecated width, align. + html template: move <title> after <meta>. Note: charset needs to be declared before title. + slidy and s5 templates: move <title> after <meta>. + html template: Added link to html5 shim for IE. + Make --html5 have an effect only for 'html' writer (not s5, slidy, epub).
2011-01-11Preliminary support for HTML5.John MacFarlane1-4/+12
+ Added writerHtml5 writer option. + Added --html5 option. + Added support for lang in html tag (so you can do 'pandoc -s --V lang=en', for example). + Updated html template with conditionals for HTML5. + When HTML5 selected, use <header> tag around title in document, and use <section> tags instead of <div>s if --section-divs specified.
2010-12-20Added link to repo of CSL styles to README.John MacFarlane1-0/+2
2010-12-17Added new prettyprinting module.John MacFarlane1-2/+5
* Added Text.Pandoc.Pretty. This is better suited for pandoc than the 'pretty' package. One advantage is that we now get proper wrapping; Emph [Inline] is no longer treated as a big unwrappable unit. Previously we only got breaks for spaces at the "outer level." We can also more easily avoid doubled blank lines. Performance is significantly better as well. * Removed Text.Pandoc.Blocks. Text.Pandoc.Pretty allows you to define blocks and concatenate them. * Modified markdown, RST, org readers to use Text.Pandoc.Pretty instead of Text.PrettyPrint.HughesPJ. * Text.Pandoc.Shared: Added writerColumns to WriterOptions. * Markdown, RST, Org writers now break text at writerColumns. * Added --columns command-line option, which sets stColumns and writerColumns. * Table parsing: If the size of the header > stColumns, use the header size as 100% for purposes of calculating relative widths of columns.
2010-12-13Fixed table in README.John MacFarlane1-1/+1