diff options
author | John MacFarlane <jgm@berkeley.edu> | 2012-08-12 19:27:13 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2012-08-12 19:27:13 -0700 |
commit | e8e8468d69b885a9e84435f29c4b553bb4d2417d (patch) | |
tree | de9be54272ac42b5af13de71fd9c2a2c923e1379 /README | |
parent | 5d83751af4e5df61bf41c3fc9eb79031d772f2bb (diff) | |
download | pandoc-e8e8468d69b885a9e84435f29c4b553bb4d2417d.tar.gz |
Implemented Ext_mmd_title_block in markdown reader & writer.
Diffstat (limited to 'README')
-rw-r--r-- | README | 20 |
1 files changed, 18 insertions, 2 deletions
@@ -1534,7 +1534,7 @@ you'll need to add colons as above. Title block ----------- -**Extension: `pandoc_title_blocks`** +**Extension: `pandoc_title_block`** If the file begins with a title block @@ -2207,12 +2207,28 @@ Causes anything between `\\(` and `\\)` to be interpreted as inline TeX math, and anything between `\\[` and `\\]` to be interpreted as display TeX math. -+**Extension: `markdown_attribute`**\ +**Extension: `markdown_attribute`**\ Causes the attribute `markdown=1` to be added to all block-level HTML tags that might contain markdown. In pandoc, material inside block-level tags is interpreted a markdown by default, but in some other implementations, the `markdown=1` tag is needed. +**Extension: `mmd_title_block`**\ +Enables a [MultiMarkdown] style title block at the top of +the document, for example: + + Title: My title + Author: John Doe + Date: September 1, 2008 + Comment: This is a sample mmd title block, with + a field spanning multiple lines. + +See the MultiMarkdown documentation for details. Note that only title, +author, and date are recognized; other fields are simply ignored by +pandoc. If `pandoc_title_block` is enabled, it will take precedence over +`mmd_title_block`. + + [MultiMarkdown]: http://fletcherpenney.net/multimarkdown/ Producing slide shows with Pandoc ================================= |