aboutsummaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Collapse)AuthorFilesLines
2012-08-10Documented new system for enabling/disabling extensions.John MacFarlane1-26/+46
2012-08-09Changed strict to markdown_strict.John MacFarlane1-9/+9
2012-08-09Removed `--strict`, added extensions to writer/reader names.John MacFarlane1-22/+15
* The `--strict` option has been removed. * Instead of using `--strict`, one can now use `strict` instead of `markdown` as an input or output format name. * The `--enable` and `--disable` optinos have been removed. * It is now possible to enable or disable specific extensions by appending them (with '+' or '-') to the writer or reader name. For example `pandoc -f markdown-footnotes+hard_line_breaks`. * The lhs extensions are now implemented this way, too; you can use either `+lhs` or `+literate_haskell`.
2012-08-09Removed --enable, --disable options.John MacFarlane1-12/+2
2012-08-08Changed heading in README so we don't have two "Citations" sections.John MacFarlane1-2/+2
2012-08-06Support hard_line_breaks markdown extension.John MacFarlane1-0/+10
* Added Ext_hard_line_breaks. * Added section in README on non-pandoc extensions. * Exported pandocExtensions and strictExtensions in Text.Pandoc.Options. Closes #514.
2012-08-05Documented styles used in reference docxJohn MacFarlane1-1/+6
2012-07-27Updated extension labels in README.John MacFarlane1-21/+29
2012-07-27More documentation of extensionsJohn MacFarlane1-6/+14
2012-07-27Started documenting individual syntax extensions in README.John MacFarlane1-19/+38
2012-07-22Added README description of pipe tables.John MacFarlane1-5/+44
2012-07-22Added a new FictionBook2 (FB2) writer.Sergey Astanin1-15/+24
2012-07-22Added note on --preserve-tabs in README.John MacFarlane1-0/+2
2012-07-12Updated link to gladTeX. Closes #559.John MacFarlane1-1/+1
2012-07-12Added note on MathJax. Closes #558.John MacFarlane1-0/+4
2012-07-11Added information about including multiple CSS files.Arlo O'Keeffe1-1/+2
2012-06-27Acknowledge Gavin Beatty in AUTHORS.John MacFarlane1-1/+1
2012-06-08README: Documented new variables in LaTeX template.John MacFarlane1-0/+7
2012-06-08Fixed documentation on mixed lists. Closes #533.John MacFarlane1-2/+2
2012-05-24Add support for Slideous output.Jonas Smedegaard1-17/+32
2012-05-17Added 'zenburn' highlight style from highlighting-kate.John MacFarlane1-1/+1
Depend on h-k 0.5.0.6.
2012-05-11Added writerTeXLigatures to WriterOptions, `--no-tex-ligatures` option.John MacFarlane1-1/+12
This is useful for those who want to use advanced OpenType features with xelatex/lualatex.
2012-04-29Documented attributes for inline verbatim code.John MacFarlane1-0/+4
2012-04-20Documented DocBook input format in README.John MacFarlane1-10/+11
2012-03-15Added mathfont variable to latex template.John MacFarlane1-8/+2
2012-03-15LaTeX template tweaks:John MacFarlane1-1/+11
- allow geometry variable to be repeated for multiple options - use mainfont instead of romanfont
2012-03-14Added `geometry` variable to default LaTeX template.John MacFarlane1-0/+2
2012-03-12README: Removed misleading note on reST math.John MacFarlane1-1/+1
2012-03-12Added section on Internal links.John MacFarlane1-0/+17
2012-03-10Fixed typo in READMEJohn MacFarlane1-1/+1
2012-03-09Changed -V so that you can specify a key without a value.John MacFarlane1-2/+3
Such keys get the value `true`.
2012-03-09Added beamer+lhs as output format.John MacFarlane1-5/+6
2012-03-04Better instructions for modifying templates for pdf, odt, epub output.John MacFarlane1-1/+5
Thanks to rwst. Closes #347.
2012-03-04Fixed link example in README.John MacFarlane1-1/+1
Thanks to Ryan Gray for pointing out the mistake.
2012-02-12README - fixed documentation on Smart Punctuation.John MacFarlane1-3/+5
Closes #415.
2012-02-12Doc fix: 'fontsize' is the template variable, not 'font-size'.John MacFarlane1-1/+1
Closes pandoc-types#4.
2012-02-09Merge pull request #411 from dfc/patch-1John MacFarlane1-1/+1
"be is in" -> "be in"
2012-02-09Changed a README example.John MacFarlane1-4/+3
The old one was bad, because the HTML comment is no longer needed for that case in pandoc.
2012-02-08"be is in" -> "be in" Douglas Calvert1-1/+1
2012-02-06Fixed lhs+markdown instructions.John MacFarlane1-2/+2
Classes 'literate' and 'haskell' are needed for bird tracks. Closes #395.
2012-02-05Re-added the --ascii option.John MacFarlane1-0/+5
Now it is implemented in pandoc.hs, not in the HTML writer.
2012-01-31Don't include mathml javascript for html5 output.John MacFarlane1-4/+4
mathml is supposed to be supported in HTML5.
2012-01-31Support `--mathml` flag in docbook.John MacFarlane1-4/+10
2012-01-30Added `--epub-embed-font` option.John MacFarlane1-0/+32
* This can be repeated for multiple fonts. * Added parameter for fonts to embed to writeEPUB. * Added ttf, otf to Mime types in Text.Pandoc.MIME.
2012-01-29Updated README author list.John MacFarlane1-1/+2
2012-01-28Changed date in README.John MacFarlane1-1/+1
2012-01-28Support github syntax for fenced code blocks.John MacFarlane1-14/+28
You can now write ```ruby x = 2 ``` instead of ~~~ {.ruby} x = 2 ~~~~
2012-01-28Made `beamer` an output format, removed `pdf` as output format.John MacFarlane1-49/+39
Removed `--beamer` option; instead, use `beamer` as output format. There is no longer a `pdf` output format; instead, pandoc tries to produce a pdf if the output file has a `.pdf` extension. (The output format can be latex -- the default for pdf output, latex+lhs, or beamer.) This seems more consistent with the way pandoc currently works (e.g. we have an `html5` output format, not an `--html5` option).
2012-01-27Fixed link in README.John MacFarlane1-1/+1
2012-01-26Added --atx-headers option.John MacFarlane1-0/+4