summaryrefslogtreecommitdiff
path: root/README
Commit message (Collapse)AuthorAge
* Fixed misspelling in README.John MacFarlane2011-01-30
|
* Updated some dates in documentation.John MacFarlane2011-01-29
|
* Finished revising markdown description in README.John MacFarlane2011-01-28
|
* Improved README on lists.John MacFarlane2011-01-28
|
* Add possibility to use listings package for code blocks andJosef Svenningsson2011-01-28
| | | | inline code in the LaTeX writer.
* More README improvements.John MacFarlane2011-01-28
|
* Partial restructuring of README.John MacFarlane2011-01-28
| | | | | Aim is to provide a complete markdown syntax description, including pandoc differences.
* Refactored man pages.John MacFarlane2011-01-28
| | | | | | * Markdown syntax description from README now goes in pandoc_markdown.5. * Refactored man page construction functions, putting more of the work in MakeManPages.hs.
* Added --normalize option.John MacFarlane2011-01-20
|
* Documented --chapters in README.John MacFarlane2011-01-16
|
* Improvements to --html5 support:John MacFarlane2011-01-11
| | | | | | | | | | | + <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).
* Preliminary support for HTML5.John MacFarlane2011-01-11
| | | | | | | | | | | + 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.
* Added link to repo of CSL styles to README.John MacFarlane2010-12-20
|
* Added new prettyprinting module.John MacFarlane2010-12-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* Fixed table in README.John MacFarlane2010-12-13
|
* Fixed internal link in README.John MacFarlane2010-12-13
|
* Removed deprecated -C/--custom-header option.John MacFarlane2010-12-11
| | | | Use --template instead.
* Added JSON reader and writer.John MacFarlane2010-12-11
|\ | | | | | | | | The JSON reader is about 20x faster than the native reader. So this can be a good way to serialize a pandoc document.
| * Added json format for reading and writing.John MacFarlane2010-12-09
| | | | | | | | This is faster to parse than native.
* | Removed HTML sanitization.John MacFarlane2010-12-10
|/ | | | | | | | | 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.
* RST reader: Added footnote suppport.John MacFarlane2010-12-08
| | | | | | | | | 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.
* Narrowed a long line in README.John MacFarlane2010-12-07
|
* Improved process to create man page from README.John MacFarlane2010-12-07
| | | | | Previously it relied on pandoc already being installed. Now it uses dist/package.conf.inplace.
* Use same options documentation in README and man page.John MacFarlane2010-12-07
| | | | Later we will generate the man page from the README.
* Documented citations in README.John MacFarlane2010-12-05
|
* Documented fact that you can specify --bibliography repeatedly.John MacFarlane2010-12-05
|
* README: Updated list of code contributors.John MacFarlane2010-12-05
|
* Documented org-mode writer in README, cabal, man pages.John MacFarlane2010-12-05
|
* Documented all the formats citeproc/bibutils can handle.John MacFarlane2010-12-05
|
* Updated README and pandoc man page with textile reader.John MacFarlane2010-12-03
|
* More documentation for citeproc features (still incomplete).John MacFarlane2010-12-03
|
* Merge branch 'textile'John MacFarlane2010-11-27
|\ | | | | | | | | | | | | Conflicts: README man/man1/pandoc.1.md pandoc.cabal
| * Added Textile writer module.John MacFarlane2010-05-17
| |
* | --mathjax: Use mathjax with raw latex rather than mathml.John MacFarlane2010-10-31
| | | | | | | | It seems to work better, and the default config can be used.
* | Added support for MathJax for displaying math in HTML.John MacFarlane2010-10-26
| | | | | | | | | | | | | | | | Added --mathjax option. Added MathJax to HTMLMathMethod. Supported MathJax in HTML writer. Resolves Issue #259.
* | Documented LaTeX macros.John MacFarlane2010-10-26
| |
* | Clarified that multiline tables don't support colspans or rowspans.John MacFarlane2010-09-23
| |
* | Slight change in README on table cell spans.John MacFarlane2010-09-23
| |
* | README - moved links to end.John MacFarlane2010-07-24
| |
* | Revised description of slide formats.John MacFarlane2010-07-23
| |
* | Added new --offline option for slidy.John MacFarlane2010-07-22
| | | | | | | | Added slidy/slidy.min.{css,js}.
* | Updated --data-dir documentation to include epub.css.John MacFarlane2010-07-21
| |
* | Slidy writer: create new slide at every level 1 header.John MacFarlane2010-07-18
| |
* | Added --section-divs option.John MacFarlane2010-07-15
| | | | | | | | | | | | | | + Header identifiers now get attached to the headers, unless --section-divs is specified, in which case they are added to enclosing divs. By default, the divs are not added. + Resolves Issue #230, #239.
* | Added --webtex option for HTML math.John MacFarlane2010-07-15
| | | | | | | | | | | | | | | | | | + Added --webtex command-line option, with optional parameter. (Defaults to using google charts API.) + Added WebTeX HTMLMathMethod. + Removed MimeTeX HTMLMathMethod. (WebTeX is generic and subsumes it.) + Modified --mimetex option to use WebTeX. + Thanks to lpeterse for the idea and some of the code.
* | Improved Slidy writer.John MacFarlane2010-07-13
| | | | | | | | | | We now carve up slides at HorizontalRules, rather than by level-1 headers. This gives the user lots of flexibility.
* | Added a slidy writer.John MacFarlane2010-07-13
| | | | | | | | Resolves Issue #122.
* | Modified example refs so they can occur before or after target.John MacFarlane2010-07-12
| | | | | | | | | | The refs are now replaced by numbers at the final stage, using processWith.
* | Merge branch 'atlists'. Added auto-numbered example lists.John MacFarlane2010-07-11
|\ \
| * | Implemented @ for sequentially numbered examples.John MacFarlane2010-03-27
| | | | | | | | | | | | Also implemented (@label) for example labels and references.