aboutsummaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Collapse)AuthorFilesLines
2011-07-22Updated contributor list.John MacFarlane1-1/+2
2011-07-20Document pandoc-templates repository in README.John MacFarlane1-0/+7
2011-04-04Document --biblatex and --natbib options.John MacFarlane1-0/+6
2011-03-13Added --epub-cover-image option.John MacFarlane1-0/+4
API change: Added a parameter for the cover image path to writeEPUB. Followed best practices outlined in http://blog.threepress.org/2009/11/20/best-practices-in-epub-cover-images/
2011-03-09Fixed orgmode link.John MacFarlane1-1/+1
2011-02-06Added --ascii option.John MacFarlane1-0/+5
Currently supported only in HTML writer.
2011-02-05README: Added section on four-space rule for lists.John MacFarlane1-6/+35
Resolves Issue #283.
2011-02-05README: Clarified optional arguments on math options.John MacFarlane1-7/+10
2011-01-30Fixed misspelling in README.John MacFarlane1-1/+1
2011-01-29Updated some dates in documentation.John MacFarlane1-2/+2
2011-01-28Finished revising markdown description in README.John MacFarlane1-47/+155
2011-01-28Improved README on lists.John MacFarlane1-10/+123
2011-01-28Add possibility to use listings package for code blocks andJosef Svenningsson1-0/+3
inline code in the LaTeX writer.
2011-01-28More README improvements.John MacFarlane1-68/+111
2011-01-28Partial restructuring of README.John MacFarlane1-281/+466
Aim is to provide a complete markdown syntax description, including pandoc differences.
2011-01-28Refactored man pages.John MacFarlane1-11/+10
* Markdown syntax description from README now goes in pandoc_markdown.5. * Refactored man page construction functions, putting more of the work in MakeManPages.hs.
2011-01-20Added --normalize option.John MacFarlane1-0/+4
2011-01-16Documented --chapters in README.John MacFarlane1-0/+4
2011-01-11Improvements to --html5 support:John MacFarlane1-1/+1
+ <nav> for TOC, <figure> for figures, type attribute in <ol>. + Don't add math javascript in html5. + Use style attributes instead of deprecated width, align. + html template: move <title> after <meta>. Note: charset needs to be declared before title. + slidy and s5 templates: move <title> after <meta>. + html template: Added link to html5 shim for IE. + Make --html5 have an effect only for 'html' writer (not s5, slidy, epub).
2011-01-11Preliminary support for HTML5.John MacFarlane1-4/+12
+ Added writerHtml5 writer option. + Added --html5 option. + Added support for lang in html tag (so you can do 'pandoc -s --V lang=en', for example). + Updated html template with conditionals for HTML5. + When HTML5 selected, use <header> tag around title in document, and use <section> tags instead of <div>s if --section-divs specified.
2010-12-20Added link to repo of CSL styles to README.John MacFarlane1-0/+2
2010-12-17Added new prettyprinting module.John MacFarlane1-2/+5
* Added Text.Pandoc.Pretty. This is better suited for pandoc than the 'pretty' package. One advantage is that we now get proper wrapping; Emph [Inline] is no longer treated as a big unwrappable unit. Previously we only got breaks for spaces at the "outer level." We can also more easily avoid doubled blank lines. Performance is significantly better as well. * Removed Text.Pandoc.Blocks. Text.Pandoc.Pretty allows you to define blocks and concatenate them. * Modified markdown, RST, org readers to use Text.Pandoc.Pretty instead of Text.PrettyPrint.HughesPJ. * Text.Pandoc.Shared: Added writerColumns to WriterOptions. * Markdown, RST, Org writers now break text at writerColumns. * Added --columns command-line option, which sets stColumns and writerColumns. * Table parsing: If the size of the header > stColumns, use the header size as 100% for purposes of calculating relative widths of columns.
2010-12-13Fixed table in README.John MacFarlane1-1/+1
2010-12-13Fixed internal link in README.John MacFarlane1-1/+1
2010-12-11Removed deprecated -C/--custom-header option.John MacFarlane1-7/+0
Use --template instead.
2010-12-11Added JSON reader and writer.John MacFarlane1-3/+4
The JSON reader is about 20x faster than the native reader. So this can be a good way to serialize a pandoc document.
2010-12-10Removed HTML sanitization.John MacFarlane1-6/+0
This is better done on the resulting HTML; use the xss-sanitize library for this. xss-sanitize is based on pandoc's sanitization, but improves it. - Removed stateSanitize from ParserState. - Removed --sanitize-html option.
2010-12-09Added json format for reading and writing.John MacFarlane1-3/+4
This is faster to parse than native.
2010-12-08RST reader: Added footnote suppport.John MacFarlane1-4/+2
Resolves issue #258. Note that there are some differences in how docutils and pandoc treat footnotes. Currently pandoc ignores the numeral or symbol used in the note; footnotes are put in an auto-numbered ordered list.
2010-12-07Narrowed a long line in README.John MacFarlane1-2/+2
2010-12-07Improved process to create man page from README.John MacFarlane1-70/+55
Previously it relied on pandoc already being installed. Now it uses dist/package.conf.inplace.
2010-12-07Use same options documentation in README and man page.John MacFarlane1-225/+210
Later we will generate the man page from the README.
2010-12-05Documented citations in README.John MacFarlane1-6/+42
2010-12-05Documented fact that you can specify --bibliography repeatedly.John MacFarlane1-1/+2
2010-12-05README: Updated list of code contributors.John MacFarlane1-1/+2
2010-12-05Documented org-mode writer in README, cabal, man pages.John MacFarlane1-10/+15
2010-12-05Documented all the formats citeproc/bibutils can handle.John MacFarlane1-3/+29
2010-12-03Updated README and pandoc man page with textile reader.John MacFarlane1-13/+14
2010-12-03More documentation for citeproc features (still incomplete).John MacFarlane1-0/+28
2010-11-27Merge branch 'textile'John MacFarlane1-5/+8
Conflicts: README man/man1/pandoc.1.md pandoc.cabal
2010-10-31--mathjax: Use mathjax with raw latex rather than mathml.John MacFarlane1-5/+0
It seems to work better, and the default config can be used.
2010-10-26Added support for MathJax for displaying math in HTML.John MacFarlane1-13/+14
Added --mathjax option. Added MathJax to HTMLMathMethod. Supported MathJax in HTML writer. Resolves Issue #259.
2010-10-26Documented LaTeX macros.John MacFarlane1-0/+12
2010-09-23Clarified that multiline tables don't support colspans or rowspans.John MacFarlane1-1/+2
2010-09-23Slight change in README on table cell spans.John MacFarlane1-2/+2
2010-07-24README - moved links to end.John MacFarlane1-19/+19
2010-07-23Revised description of slide formats.John MacFarlane1-58/+26
2010-07-22Added new --offline option for slidy.John MacFarlane1-12/+15
Added slidy/slidy.min.{css,js}.
2010-07-21Updated --data-dir documentation to include epub.css.John MacFarlane1-2/+3
2010-07-18Slidy writer: create new slide at every level 1 header.John MacFarlane1-5/+3