Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-12-13 | Fixed internal link in README. | John MacFarlane | 1 | -1/+1 | |
2010-12-11 | Removed deprecated -C/--custom-header option. | John MacFarlane | 1 | -7/+0 | |
Use --template instead. | |||||
2010-12-11 | Added JSON reader and writer. | John MacFarlane | 1 | -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-10 | Removed HTML sanitization. | John MacFarlane | 1 | -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-09 | Added json format for reading and writing. | John MacFarlane | 1 | -3/+4 | |
This is faster to parse than native. | |||||
2010-12-08 | RST reader: Added footnote suppport. | John MacFarlane | 1 | -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-07 | Narrowed a long line in README. | John MacFarlane | 1 | -2/+2 | |
2010-12-07 | Improved process to create man page from README. | John MacFarlane | 1 | -70/+55 | |
Previously it relied on pandoc already being installed. Now it uses dist/package.conf.inplace. | |||||
2010-12-07 | Use same options documentation in README and man page. | John MacFarlane | 1 | -225/+210 | |
Later we will generate the man page from the README. | |||||
2010-12-05 | Documented citations in README. | John MacFarlane | 1 | -6/+42 | |
2010-12-05 | Documented fact that you can specify --bibliography repeatedly. | John MacFarlane | 1 | -1/+2 | |
2010-12-05 | README: Updated list of code contributors. | John MacFarlane | 1 | -1/+2 | |
2010-12-05 | Documented org-mode writer in README, cabal, man pages. | John MacFarlane | 1 | -10/+15 | |
2010-12-05 | Documented all the formats citeproc/bibutils can handle. | John MacFarlane | 1 | -3/+29 | |
2010-12-03 | Updated README and pandoc man page with textile reader. | John MacFarlane | 1 | -13/+14 | |
2010-12-03 | More documentation for citeproc features (still incomplete). | John MacFarlane | 1 | -0/+28 | |
2010-11-27 | Merge branch 'textile' | John MacFarlane | 1 | -5/+8 | |
Conflicts: README man/man1/pandoc.1.md pandoc.cabal | |||||
2010-10-31 | --mathjax: Use mathjax with raw latex rather than mathml. | John MacFarlane | 1 | -5/+0 | |
It seems to work better, and the default config can be used. | |||||
2010-10-26 | Added support for MathJax for displaying math in HTML. | John MacFarlane | 1 | -13/+14 | |
Added --mathjax option. Added MathJax to HTMLMathMethod. Supported MathJax in HTML writer. Resolves Issue #259. | |||||
2010-10-26 | Documented LaTeX macros. | John MacFarlane | 1 | -0/+12 | |
2010-09-23 | Clarified that multiline tables don't support colspans or rowspans. | John MacFarlane | 1 | -1/+2 | |
2010-09-23 | Slight change in README on table cell spans. | John MacFarlane | 1 | -2/+2 | |
2010-07-24 | README - moved links to end. | John MacFarlane | 1 | -19/+19 | |
2010-07-23 | Revised description of slide formats. | John MacFarlane | 1 | -58/+26 | |
2010-07-22 | Added new --offline option for slidy. | John MacFarlane | 1 | -12/+15 | |
Added slidy/slidy.min.{css,js}. | |||||
2010-07-21 | Updated --data-dir documentation to include epub.css. | John MacFarlane | 1 | -2/+3 | |
2010-07-18 | Slidy writer: create new slide at every level 1 header. | John MacFarlane | 1 | -5/+3 | |
2010-07-15 | Added --section-divs option. | John MacFarlane | 1 | -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-15 | Added --webtex option for HTML math. | John MacFarlane | 1 | -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-13 | Improved Slidy writer. | John MacFarlane | 1 | -33/+65 | |
We now carve up slides at HorizontalRules, rather than by level-1 headers. This gives the user lots of flexibility. | |||||
2010-07-13 | Added a slidy writer. | John MacFarlane | 1 | -54/+67 | |
Resolves Issue #122. | |||||
2010-07-12 | Modified example refs so they can occur before or after target. | John MacFarlane | 1 | -2/+2 | |
The refs are now replaced by numbers at the final stage, using processWith. | |||||
2010-07-11 | Merge branch 'atlists'. Added auto-numbered example lists. | John MacFarlane | 1 | -5/+31 | |
2010-07-06 | Documented grid tables in README. | John MacFarlane | 1 | -3/+25 | |
Resolves Issue #43. | |||||
2010-07-06 | Allow language-neutral table captions. | John MacFarlane | 1 | -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-05 | Documented EPUB writer and --epub-{stylesheet,metadata} options. | John MacFarlane | 1 | -6/+29 | |
2010-05-17 | Added Textile writer module. | John MacFarlane | 1 | -3/+7 | |
2010-05-06 | Updated man page and README. | John MacFarlane | 1 | -3/+1 | |
Pandoc no longer respects locale, even when compiled by GHC 6.12. | |||||
2010-03-27 | Implemented @ for sequentially numbered examples. | John MacFarlane | 1 | -1/+27 | |
Also implemented (@label) for example labels and references. | |||||
2010-03-27 | Removed unneeded single quotes in README. | John MacFarlane | 1 | -4/+4 | |
2010-03-20 | Added to acknowledgements. | John MacFarlane | 1 | -1/+1 | |
2010-03-20 | Improved contributor list. | fiddlosopher | 1 | -3/+4 | |
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1925 788f1e2b-df1e-0410-8736-df70ead52e1b | |||||
2010-03-20 | Fixed indent in README. | fiddlosopher | 1 | -3/+3 | |
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1924 788f1e2b-df1e-0410-8736-df70ead52e1b | |||||
2010-03-19 | Updated date on README. | fiddlosopher | 1 | -1/+1 | |
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1921 788f1e2b-df1e-0410-8736-df70ead52e1b | |||||
2010-03-18 | Added --mathml option; removed Text.Pandoc.LaTeXMathML. | fiddlosopher | 1 | -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-18 | Added plain writer. | fiddlosopher | 1 | -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-18 | Fixed definition lists for options in README. | fiddlosopher | 1 | -6/+6 | |
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1906 788f1e2b-df1e-0410-8736-df70ead52e1b | |||||
2010-03-18 | Documented that ODT and RTF don't implement the image-as-figure feature. | fiddlosopher | 1 | -1/+5 | |
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1902 788f1e2b-df1e-0410-8736-df70ead52e1b | |||||
2010-03-18 | HTML writer: Use a p rather than a div for image caption. | fiddlosopher | 1 | -1/+1 | |
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1900 788f1e2b-df1e-0410-8736-df70ead52e1b | |||||
2010-03-16 | Shared: Export uniqueIdent, don't allow tilde in identifier. | fiddlosopher | 1 | -2/+1 | |
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1894 788f1e2b-df1e-0410-8736-df70ead52e1b |