aboutsummaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Collapse)AuthorFilesLines
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
2010-07-15Added --section-divs option.John MacFarlane1-0/+11
+ 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.
2010-07-15Added --webtex option for HTML math.John MacFarlane1-8/+22
+ 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.
2010-07-13Improved Slidy writer.John MacFarlane1-33/+65
We now carve up slides at HorizontalRules, rather than by level-1 headers. This gives the user lots of flexibility.
2010-07-13Added a slidy writer.John MacFarlane1-54/+67
Resolves Issue #122.
2010-07-12Modified example refs so they can occur before or after target.John MacFarlane1-2/+2
The refs are now replaced by numbers at the final stage, using processWith.
2010-07-11Merge branch 'atlists'. Added auto-numbered example lists.John MacFarlane1-5/+31
2010-07-06Documented grid tables in README.John MacFarlane1-3/+25
Resolves Issue #43.
2010-07-06Allow language-neutral table captions.John MacFarlane1-2/+3
+ Captions may now begin simply with ':', instead of 'Table:' + Captions may now appear either above or below the table. + Resolves Issue #227.
2010-07-05Documented EPUB writer and --epub-{stylesheet,metadata} options.John MacFarlane1-6/+29
2010-05-17Added Textile writer module.John MacFarlane1-3/+7
2010-05-06Updated man page and README.John MacFarlane1-3/+1
Pandoc no longer respects locale, even when compiled by GHC 6.12.
2010-03-27Implemented @ for sequentially numbered examples.John MacFarlane1-1/+27
Also implemented (@label) for example labels and references.
2010-03-27Removed unneeded single quotes in README.John MacFarlane1-4/+4
2010-03-20Added to acknowledgements.John MacFarlane1-1/+1
2010-03-20Improved contributor list.fiddlosopher1-3/+4
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1925 788f1e2b-df1e-0410-8736-df70ead52e1b
2010-03-20Fixed indent in README.fiddlosopher1-3/+3
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1924 788f1e2b-df1e-0410-8736-df70ead52e1b
2010-03-19Updated date on README.fiddlosopher1-1/+1
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1921 788f1e2b-df1e-0410-8736-df70ead52e1b
2010-03-18Added --mathml option; removed Text.Pandoc.LaTeXMathML.fiddlosopher1-0/+5
* Added data/MathMLinHTML.js, which is included when no URL is provided for --mathml. This allows MathML to be displayed in better browsers, as text/html. * The module was no longer necessary; its functionality (two lines) was incorporated into pandoc.hs. * Consolidated the two LaTeXMathML.js files into one. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1909 788f1e2b-df1e-0410-8736-df70ead52e1b
2010-03-18Added plain writer.fiddlosopher1-4/+4
Text.Pandoc.Writers.Markdown now exports a writePlain, which writes plain text without links, pictures, or special formatting (not even markdown conventions). git-svn-id: https://pandoc.googlecode.com/svn/trunk@1907 788f1e2b-df1e-0410-8736-df70ead52e1b
2010-03-18Fixed definition lists for options in README.fiddlosopher1-6/+6
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1906 788f1e2b-df1e-0410-8736-df70ead52e1b