aboutsummaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Collapse)AuthorFilesLines
2013-01-22Corrected name of `blank_before_blockquote` in README.John MacFarlane1-1/+1
Closes #718.
2013-01-19Change date on README.John MacFarlane1-1/+1
2013-01-17Slight modification of lhs instructions.John MacFarlane1-3/+3
2013-01-16Updated extensions in README.John MacFarlane1-0/+9
2013-01-16README clarification.John MacFarlane1-0/+3
2013-01-15README on docx styles: Image Caption, not Picture Caption.John MacFarlane1-1/+1
2013-01-15Added `writerHtmlQTags` and `--html-q-tags` option.John MacFarlane1-0/+3
The previous default was to use `<q>` tags in HTML5. But `<q>` tags are also valid HTML4, and they are not very robust in HTML5. Some user agents don't support them, and some CSS resets prevent pandoc's quotes CSS from working properly (e.g. bootstrap). It seems a better default just to insert quote characters, but the option is provided for those who have gotten used to using `<q>` tags.
2013-01-15Added Brent Yorgey to Authors.John MacFarlane1-1/+1
2013-01-15Added Denis Laxalde to Authors.John MacFarlane1-1/+1
2013-01-15ADded Arlo O'Keeffe to Authors.John MacFarlane1-1/+1
2013-01-15Changed Ext_autolink_urls -> Ext_autolink_bare_uris.John MacFarlane1-2/+2
Added tests.
2013-01-14Added Ext_implicit_figures.John MacFarlane1-1/+1
No code to hook this in yet.
2013-01-13README: Cosmetic change in headerless table example.John MacFarlane1-1/+1
Closes #696.
2013-01-13Documented line blocks in README.John MacFarlane1-0/+29
2013-01-11Options: Added githubMarkdownExtensions.John MacFarlane1-1/+3
Added github_markdown as input/output option.
2013-01-10Options: Added phpMarkdownExtraExtensions.John MacFarlane1-1/+3
And added markdown_phpextra input/output format.
2013-01-10Implemented Ext_header_attributes.John MacFarlane1-3/+24
This allows explicit attributes to be put on headers, using a syntax like that for code blocks: {#id .class .class k=v k=v}
2013-01-06README: Changed description of `markdown_attribute` extension.John MacFarlane1-4/+3
2013-01-05Changed --toc-level to --toc-depth.John MacFarlane1-1/+1
2013-01-05Changed `--epub-toc-level` to `--toc-level`.John MacFarlane1-5/+5
Also writerEpubTOCLevel -> writerTOCLevel. So far this is only implemented in the EPUB writer.
2013-01-04Added `--epub-chapter-level` and `--epub-toc-level` options.John MacFarlane1-0/+14
Also added writerEpubChapterLevel and writerEpubTOCLevel fields to WriterOptions.
2013-01-04Fixed duplicate link reference in README.John MacFarlane1-2/+3
2013-01-03Implemented `Ext_header_identifiers`, `Ext_implicit_header_references`.John MacFarlane1-1/+25
Now by default pandoc will act as if link references have been defined for all headers. So, you can do this: # My header Link to [My header]. Another link to [it][My header]. Closes #691.
2012-12-19Documented .bibtex extension for BibTeX.John MacFarlane1-2/+7
Closes #662.
2012-11-04EPUB writer: Rationalized templates.John MacFarlane1-2/+1
* Previously there were three different templates involved in epub production. There is now just one template, default.epub or default.epub3. * It can now be overridden using `--template`, just like other templates.
2012-11-04EPUB: removed need for separate epub-titlepage template.John MacFarlane1-1/+1
The titlepage stuff is now folded into the epub-page template. A titlepage variable selects it.
2012-11-04EPUB writer: Removed need for separate epub-coverpage template.John MacFarlane1-2/+1
The standard epub-page template is now used.
2012-11-02Preliminary changes for epub3 format.John MacFarlane1-25/+23
* EPUB writer now exports writeEPUB2 and writeEPUB3. * 'epub' output format is epub v2, while 'epub3' is v3.
2012-10-04Fixed typo.John MacFarlane1-1/+1
2012-09-27Removed Ext_monospace_autolinks.John MacFarlane1-5/+0
2012-09-27Added Ext_autolink_urls.John MacFarlane1-0/+4
2012-09-27Renamed Ext_autolink_code_spans to Ext_monospace_autolinks.John MacFarlane1-1/+1
2012-09-25Make --id-prefix affect footnote IDs in markdown writer.John MacFarlane1-2/+3
Closes #614.
2012-09-16README: Removed claim that 'enumerate' library is needed in LaTeX.John MacFarlane1-1/+1
It isn't any longer.
2012-09-15Updated README to mention longtable packageJohn MacFarlane1-1/+1
2012-09-15Updated README to include mediawiki readerJohn MacFarlane1-19/+20
2012-09-08README: Properly escape `$` characters.John MacFarlane1-2/+2
Otherwise they mess up the LaTeX benchmark, which uses a version of README converted to LaTeX.
2012-09-06Made --id-prefix work in DocBook as well as HTML.John MacFarlane1-2/+2
Closes #607.
2012-08-21Changed nomenclature, delimited -> fenced code blocks.John MacFarlane1-6/+6
2012-08-19Added Ext_abbrevations for PHP markdown style abbreviation keys.John MacFarlane1-0/+9
Note: pandoc does not have an abbreviation element (yet) and so currently when this extension is enabled, it just causes pandoc to skip the abbrevation keys.
2012-08-12Added Ext_raw_html extension.John MacFarlane1-1/+5
Closes #556 -- you can now specify markdown-raw_html as your input format. (Read: markdown minus raw_html.)
2012-08-12Added note to README on positioning of reference link defs.John MacFarlane1-1/+10
2012-08-12Implemented Ext_mmd_title_block in markdown reader & writer.John MacFarlane1-2/+18
2012-08-11Documented markdown_attribute extension in README.John MacFarlane1-0/+7
2012-08-11Revert "Implemented Ext_markdown_attribute."John MacFarlane1-6/+0
This reverts commit 78d3a0fb9d3f862d5e2b61bd45434f7af9cd9f18.
2012-08-11Implemented Ext_markdown_attribute.John MacFarlane1-0/+6
This adds markdown=1 to block tags.
2012-08-10Options and documentation for backslash tex math options.John MacFarlane1-0/+10
Ext_tex_math_single_backslash and Ext_tex_math_double_backslash. Still need to code in reader.
2012-08-10Changed Ext_tex_math to Ext_tex_math_dollars.John MacFarlane1-1/+1
2012-08-10Documented org-like pipe tables.John MacFarlane1-0/+12
2012-08-10Documented new system for enabling/disabling extensions.John MacFarlane1-26/+46