Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-02-09 | Changed a README example. | John MacFarlane | 1 | -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 Calvert | 1 | -1/+1 | |
2012-02-06 | Fixed lhs+markdown instructions. | John MacFarlane | 1 | -2/+2 | |
Classes 'literate' and 'haskell' are needed for bird tracks. Closes #395. | |||||
2012-02-05 | Re-added the --ascii option. | John MacFarlane | 1 | -0/+5 | |
Now it is implemented in pandoc.hs, not in the HTML writer. | |||||
2012-01-31 | Don't include mathml javascript for html5 output. | John MacFarlane | 1 | -4/+4 | |
mathml is supposed to be supported in HTML5. | |||||
2012-01-31 | Support `--mathml` flag in docbook. | John MacFarlane | 1 | -4/+10 | |
2012-01-30 | Added `--epub-embed-font` option. | John MacFarlane | 1 | -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-29 | Updated README author list. | John MacFarlane | 1 | -1/+2 | |
2012-01-28 | Changed date in README. | John MacFarlane | 1 | -1/+1 | |
2012-01-28 | Support github syntax for fenced code blocks. | John MacFarlane | 1 | -14/+28 | |
You can now write ```ruby x = 2 ``` instead of ~~~ {.ruby} x = 2 ~~~~ | |||||
2012-01-28 | Made `beamer` an output format, removed `pdf` as output format. | John MacFarlane | 1 | -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-27 | Fixed link in README. | John MacFarlane | 1 | -1/+1 | |
2012-01-26 | Added --atx-headers option. | John MacFarlane | 1 | -0/+4 | |
2012-01-25 | Reorganized documentation of options, grouping into categories. | John MacFarlane | 1 | -148/+170 | |
2012-01-25 | Added --slide-level option to override default. | John MacFarlane | 1 | -8/+21 | |
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-25 | FIxed typo in README. Closes #390. | John MacFarlane | 1 | -1/+1 | |
2012-01-25 | Improved README on slides. | John MacFarlane | 1 | -12/+26 | |
2012-01-25 | Updated README on --chapters with --beamer. | John MacFarlane | 1 | -1/+2 | |
2012-01-24 | README: More on slide shows. | John MacFarlane | 1 | -0/+6 | |
2012-01-24 | README: New instructions for slide shows. | John MacFarlane | 1 | -12/+47 | |
2012-01-21 | README: More information on what is needed to produce PDFs. | John MacFarlane | 1 | -0/+8 | |
2012-01-21 | Removed `beamer` output format; added `--beamer` option. | John MacFarlane | 1 | -6/+15 | |
2012-01-21 | README tweak on equivalent to markdown2pdf. | John MacFarlane | 1 | -6/+14 | |
2012-01-20 | Removed markdown2pdf and documentation. | John MacFarlane | 1 | -40/+22 | |
2012-01-19 | Documented docx reader in README. | John MacFarlane | 1 | -15/+29 | |
2012-01-01 | README: Added note on proper date format. | John MacFarlane | 1 | -5/+6 | |
2012-01-01 | EPUB writer: Allow `lang` variable to set language in metadata. | John MacFarlane | 1 | -3/+4 | |
Defaults to locale language if `lang` is not set. | |||||
2012-01-01 | New treatment of dashes in --smart mode. | John MacFarlane | 1 | -5/+11 | |
* `---` 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. | |||||
2011-12-30 | README: header identifiers now work in LaTeX, ConTeXt as well as HTML. | John MacFarlane | 1 | -2/+2 | |
Patch from B. Scott Michel. | |||||
2011-12-30 | ConTeXt writer: Add section labels and internal links as in HTML. | B. Scott Michel | 1 | -6/+6 | |
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. | |||||
2011-12-30 | README: Added link for HTML 5. | John MacFarlane | 1 | -0/+1 | |
2011-12-29 | Made `html5` and `html5+lhs` output formats. | John MacFarlane | 1 | -21/+22 | |
Deprecated the `--html5`/`-5` flag. Use the output format instead. | |||||
2011-12-29 | Added 'beamer' as an output format. | John MacFarlane | 1 | -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-27 | Added `--highlight-style` and `--no-highlight` options. | John MacFarlane | 1 | -6/+17 | |
2011-12-22 | Removed highlighting flag. Highlighting support is now standard. | John MacFarlane | 1 | -5/+2 | |
2011-12-17 | Use blaze-html instead of xhtml for HTML generation. | John MacFarlane | 1 | -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-27 | Added 'lang' variable to LaTeX template. | John MacFarlane | 1 | -1/+1 | |
Thanks to Magnus Therning for the suggestion. | |||||
2011-11-24 | --self-contained now works with `<video>` as well as `<img>`. | John MacFarlane | 1 | -10/+10 | |
2011-11-21 | Slight modification of --self-contained documentation. | John MacFarlane | 1 | -9/+9 | |
2011-11-21 | Documented `--self-contained` and modified documentation for `--offline`. | John MacFarlane | 1 | -9/+20 | |
2011-11-18 | Added asciidoc output to README. | John MacFarlane | 1 | -3/+8 | |
2011-11-11 | Implemented --citation-abbreviations option. | John MacFarlane | 1 | -0/+16 | |
Mostly due to Andrea Rossato. | |||||
2011-11-10 | Changed misleading documentation on markdown2pdf. | John MacFarlane | 1 | -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-28 | Clarified rule for first line of definition lists. | John MacFarlane | 1 | -3/+5 | |
Closes #310. | |||||
2011-10-26 | Fixed typo. | John MacFarlane | 1 | -1/+1 | |
2011-10-25 | HTML reader now recognizes DocBook block and inline tags. | John MacFarlane | 1 | -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-04 | Updated README to remove mention of .bbx for bibliographies. | John MacFarlane | 1 | -13/+12 | |
2011-10-01 | Added dzslides output option. | John MacFarlane | 1 | -20/+27 | |
* Added DZSlides to HTMLSlideVariant. * Added support for dzslides in HTML writer. * Added dzslides template. | |||||
2011-09-09 | Fixed typo in README | John MacFarlane | 1 | -1/+1 | |
2011-08-03 | Note in README that --chapters is implicit when certain classes used. | John MacFarlane | 1 | -1/+2 | |
report, book, or memoir. |