summaryrefslogtreecommitdiff
path: root/README
Commit message (Collapse)AuthorAge
* Added mathfont variable to latex template.John MacFarlane2012-03-15
|
* LaTeX template tweaks:John MacFarlane2012-03-15
| | | | | - allow geometry variable to be repeated for multiple options - use mainfont instead of romanfont
* Added `geometry` variable to default LaTeX template.John MacFarlane2012-03-14
|
* README: Removed misleading note on reST math.John MacFarlane2012-03-12
|
* Added section on Internal links.John MacFarlane2012-03-12
|
* Fixed typo in READMEJohn MacFarlane2012-03-10
|
* Changed -V so that you can specify a key without a value.John MacFarlane2012-03-09
| | | | Such keys get the value `true`.
* Added beamer+lhs as output format.John MacFarlane2012-03-09
|
* Better instructions for modifying templates for pdf, odt, epub output.John MacFarlane2012-03-04
| | | | Thanks to rwst. Closes #347.
* Fixed link example in README.John MacFarlane2012-03-04
| | | | Thanks to Ryan Gray for pointing out the mistake.
* README - fixed documentation on Smart Punctuation.John MacFarlane2012-02-12
| | | | Closes #415.
* Doc fix: 'fontsize' is the template variable, not 'font-size'.John MacFarlane2012-02-12
| | | | Closes pandoc-types#4.
* Merge pull request #411 from dfc/patch-1John MacFarlane2012-02-09
|\ | | | | "be is in" -> "be in"
| * "be is in" -> "be in" Douglas Calvert2012-02-08
| |
* | Changed a README example.John MacFarlane2012-02-09
|/ | | | | The old one was bad, because the HTML comment is no longer needed for that case in pandoc.
* Fixed lhs+markdown instructions.John MacFarlane2012-02-06
| | | | | Classes 'literate' and 'haskell' are needed for bird tracks. Closes #395.
* Re-added the --ascii option.John MacFarlane2012-02-05
| | | | Now it is implemented in pandoc.hs, not in the HTML writer.
* Don't include mathml javascript for html5 output.John MacFarlane2012-01-31
| | | | mathml is supposed to be supported in HTML5.
* Support `--mathml` flag in docbook.John MacFarlane2012-01-31
|
* Added `--epub-embed-font` option.John MacFarlane2012-01-30
| | | | | | * 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.
* Updated README author list.John MacFarlane2012-01-29
|
* Changed date in README.John MacFarlane2012-01-28
|
* Support github syntax for fenced code blocks.John MacFarlane2012-01-28
| | | | | | | | | | | | | | You can now write ```ruby x = 2 ``` instead of ~~~ {.ruby} x = 2 ~~~~
* Made `beamer` an output format, removed `pdf` as output format.John MacFarlane2012-01-28
| | | | | | | | | | | 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).
* Fixed link in README.John MacFarlane2012-01-27
|
* Added --atx-headers option.John MacFarlane2012-01-26
|
* Reorganized documentation of options, grouping into categories.John MacFarlane2012-01-25
|
* Added --slide-level option to override default.John MacFarlane2012-01-25
| | | | | | | | | | | | 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).
* FIxed typo in README. Closes #390.John MacFarlane2012-01-25
|
* Improved README on slides.John MacFarlane2012-01-25
|
* Updated README on --chapters with --beamer.John MacFarlane2012-01-25
|
* README: More on slide shows.John MacFarlane2012-01-24
|
* README: New instructions for slide shows.John MacFarlane2012-01-24
|
* README: More information on what is needed to produce PDFs.John MacFarlane2012-01-21
|
* Removed `beamer` output format; added `--beamer` option.John MacFarlane2012-01-21
|
* README tweak on equivalent to markdown2pdf.John MacFarlane2012-01-21
|
* Removed markdown2pdf and documentation.John MacFarlane2012-01-20
|
* Documented docx reader in README.John MacFarlane2012-01-19
|
* README: Added note on proper date format.John MacFarlane2012-01-01
|
* EPUB writer: Allow `lang` variable to set language in metadata.John MacFarlane2012-01-01
| | | | Defaults to locale language if `lang` is not set.
* New treatment of dashes in --smart mode.John MacFarlane2012-01-01
| | | | | | | | | | | | * `---` 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.
* README: header identifiers now work in LaTeX, ConTeXt as well as HTML.John MacFarlane2011-12-30
| | | | Patch from B. Scott Michel.
* ConTeXt writer: Add section labels and internal links as in HTML.B. Scott Michel2011-12-30
| | | | | | | | | | | | Add the ability to refer to internal links to the ConTeXt writer, just like the HTML writer can. The 'hierarchicalize' function generates unique names for sections, which can be used for references in ConTeXt, just as they can be in HTML. The ConTeXt writer adds these unique identifiers to each \section and does special processing of the Link target to see if it starts with a '#' (hash symbol), which is the tip-off that the link is an internal link.
* README: Added link for HTML 5.John MacFarlane2011-12-30
|
* Made `html5` and `html5+lhs` output formats.John MacFarlane2011-12-29
| | | | | Deprecated the `--html5`/`-5` flag. Use the output format instead.
* Added 'beamer' as an output format.John MacFarlane2011-12-29
| | | | | | | | | Beamer output uses the default LaTeX template, with some customizations via variables. Added `writerBeamer` to `WriterOptions`. Added `--beamer` option to `markdown2pdf`.
* Added `--highlight-style` and `--no-highlight` options.John MacFarlane2011-12-27
|
* Removed highlighting flag. Highlighting support is now standard.John MacFarlane2011-12-22
|
* Use blaze-html instead of xhtml for HTML generation.John MacFarlane2011-12-17
| | | | | | | | | | | * 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.
* Added 'lang' variable to LaTeX template.John MacFarlane2011-11-27
| | | | Thanks to Magnus Therning for the suggestion.