summaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Collapse)Author
2012-07-11Added information about including multiple CSS files.Arlo O'Keeffe
2012-06-27Acknowledge Gavin Beatty in AUTHORS.John MacFarlane
2012-06-08README: Documented new variables in LaTeX template.John MacFarlane
2012-06-08Fixed documentation on mixed lists. Closes #533.John MacFarlane
2012-05-24Add support for Slideous output.Jonas Smedegaard
2012-05-17Added 'zenburn' highlight style from highlighting-kate.John MacFarlane
Depend on h-k 0.5.0.6.
2012-05-11Added writerTeXLigatures to WriterOptions, `--no-tex-ligatures` option.John MacFarlane
This is useful for those who want to use advanced OpenType features with xelatex/lualatex.
2012-04-29Documented attributes for inline verbatim code.John MacFarlane
2012-04-20Documented DocBook input format in README.John MacFarlane
2012-03-15Added mathfont variable to latex template.John MacFarlane
2012-03-15LaTeX template tweaks:John MacFarlane
- allow geometry variable to be repeated for multiple options - use mainfont instead of romanfont
2012-03-14Added `geometry` variable to default LaTeX template.John MacFarlane
2012-03-12README: Removed misleading note on reST math.John MacFarlane
2012-03-12Added section on Internal links.John MacFarlane
2012-03-10Fixed typo in READMEJohn MacFarlane
2012-03-09Changed -V so that you can specify a key without a value.John MacFarlane
Such keys get the value `true`.
2012-03-09Added beamer+lhs as output format.John MacFarlane
2012-03-04Better instructions for modifying templates for pdf, odt, epub output.John MacFarlane
Thanks to rwst. Closes #347.
2012-03-04Fixed link example in README.John MacFarlane
Thanks to Ryan Gray for pointing out the mistake.
2012-02-12README - fixed documentation on Smart Punctuation.John MacFarlane
Closes #415.
2012-02-12Doc fix: 'fontsize' is the template variable, not 'font-size'.John MacFarlane
Closes pandoc-types#4.
2012-02-09Merge pull request #411 from dfc/patch-1John MacFarlane
"be is in" -> "be in"
2012-02-09Changed a README example.John MacFarlane
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 Calvert
2012-02-06Fixed lhs+markdown instructions.John MacFarlane
Classes 'literate' and 'haskell' are needed for bird tracks. Closes #395.
2012-02-05Re-added the --ascii option.John MacFarlane
Now it is implemented in pandoc.hs, not in the HTML writer.
2012-01-31Don't include mathml javascript for html5 output.John MacFarlane
mathml is supposed to be supported in HTML5.
2012-01-31Support `--mathml` flag in docbook.John MacFarlane
2012-01-30Added `--epub-embed-font` option.John MacFarlane
* 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 MacFarlane
2012-01-28Changed date in README.John MacFarlane
2012-01-28Support github syntax for fenced code blocks.John MacFarlane
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 MacFarlane
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 MacFarlane
2012-01-26Added --atx-headers option.John MacFarlane
2012-01-25Reorganized documentation of options, grouping into categories.John MacFarlane
2012-01-25Added --slide-level option to override default.John MacFarlane
This allows users to select a slide level below the first header level with content. Note that content under sections above the slide level will not appear in slides (either in beamer or in HTML slide shows). This is primarily useful for creating documents that can be made into both slides and handouts (which contain additional content outside the slides).
2012-01-25FIxed typo in README. Closes #390.John MacFarlane
2012-01-25Improved README on slides.John MacFarlane
2012-01-25Updated README on --chapters with --beamer.John MacFarlane
2012-01-24README: More on slide shows.John MacFarlane
2012-01-24README: New instructions for slide shows.John MacFarlane
2012-01-21README: More information on what is needed to produce PDFs.John MacFarlane
2012-01-21Removed `beamer` output format; added `--beamer` option.John MacFarlane
2012-01-21README tweak on equivalent to markdown2pdf.John MacFarlane
2012-01-20Removed markdown2pdf and documentation.John MacFarlane
2012-01-19Documented docx reader in README.John MacFarlane
2012-01-01README: Added note on proper date format.John MacFarlane
2012-01-01EPUB writer: Allow `lang` variable to set language in metadata.John MacFarlane
Defaults to locale language if `lang` is not set.
2012-01-01New treatment of dashes in --smart mode.John MacFarlane
* `---` is always em-dash, `--` is always en-dash. * pandoc no longer tries to guess when `-` should be en-dash. * A new option, `--old-dashes`, is provided for legacy documents. Rationale: The rules for en-dash are too complex and language-dependent for a guesser to work reliably. This change gives users greater control. The alternative of using unicode isn't very good, since unicode em- and en- dashes are barely distinguishable in a monospace font.