aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-12-03more support for Textile reader (explicit links, images), tests and cabal ↵Paul Rivier5-18/+326
entries
2010-12-03simpler table cell handlingpaul.rivier1-24/+12
2010-12-03preliminary material toward table supportpaul.rivier2-2/+68
2010-12-03textile reader now imports import Text.Pandoc.Parsingpaul.rivier1-1/+2
2010-12-03Basic Textile Readerpaul.rivier7-1/+262
2010-11-28Markdown parser performance improvement.John MacFarlane1-0/+3
Do a quick lookahead to make sure what follows looks like a setext header before parsing any Inlines. This gives a 15% performance boost in one benchmark. Many thanks to knieriem for finding the problem (in peg-markdown): https://github.com/jgm/peg-markdown/issues/issue/3
2010-11-27OpenDocument writer: don't print raw TeX.John MacFarlane2-8/+5
2010-11-27LaTeX writer: Escape curly quotes.John MacFarlane1-0/+4
2010-11-27Minor adjustment in textile test suite.John MacFarlane2-2/+0
2010-11-27Merge branch 'textile'John MacFarlane10-13/+1341
Conflicts: README man/man1/pandoc.1.md pandoc.cabal
2010-11-27Use [] for superscripts and subscripts in textile writer.John MacFarlane2-4/+4
2010-11-27Fixed spacing problems in textile nested lists.John MacFarlane2-8/+4
2010-11-16Updated HCAR entry.John MacFarlane1-17/+9
2010-11-12Treat argument as URI only if it has http(s) scheme.John MacFarlane1-3/+4
Previously pandoc would treat the c: in some windowns filespecs as a URI scheme and try to download... Thanks to Peter Wang for pointing this out.
2010-11-11HTML reader: don't parse raw HTML inside <code> tag.John MacFarlane2-5/+5
Previously '<code><a>x</a></code>' would be parsed as Code "<a>x</a>", which is not what you want.
2010-11-09Allow HTML comments as inline elements in markdown.John MacFarlane2-3/+3
So, aaa <!-- comment --> bbb can be a single paragraph.
2010-10-31--mathjax: Use mathjax with raw latex rather than mathml.John MacFarlane2-17/+4
It seems to work better, and the default config can be used.
2010-10-26Added support for MathJax for displaying math in HTML.John MacFarlane5-15/+40
Added --mathjax option. Added MathJax to HTMLMathMethod. Supported MathJax in HTML writer. Resolves Issue #259.
2010-10-26Added test for macros.John MacFarlane2-1/+9
2010-10-26Documented LaTeX macros.John MacFarlane1-0/+12
2010-10-26Bump version to 1.6.1.John MacFarlane1-1/+1
2010-10-26Parse blanklines after macro definitions.John MacFarlane1-1/+1
2010-10-26Process LaTeX macros in markdown, and apply to TeX math.John MacFarlane4-8/+39
Example: \newcommand{\plus}[2]{#1 + #2} $\plus{3}{4}$ yields: 3+4
2010-10-24Added fontsize variable to default latex template.John MacFarlane1-1/+1
This makes it easy to set the font size using markdown2pdf or pandoc: markdown2pdf -V fontsize=12pt input.txt
2010-10-24LaTeX & ConTeXt writers: escape [ and ] as {[} and {]}.John MacFarlane4-12/+16
This avoids unwanted interpretation as optional arguments in some contexts, which caused the brackets to silently disappear!
2010-10-24Changed --help message for --variable to KEY:VALUE.John MacFarlane1-1/+1
Was previously FILENAME.
2010-10-19TeXMath: handle variables modified with \acute, \bar, etc.John MacFarlane1-0/+15
Complete list: \acute, \grave, \breve, \check, \dot, \mathring, \vec, \overrightarrow, \overleftarrow, \hat, \tilde, \bar.
2010-10-19TeXMath reader: handle \textit, \textbf, etc.John MacFarlane1-1/+5
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-09-10Encode filenames as UTF8.John MacFarlane2-4/+5
Resolves Issue #252 (pandoc doesn't properly handle unicode filenames).
2010-08-01gladTeX HTML - specify ENV for display or inline.John MacFarlane1-1/+3
Thanks to Jonathan Daugherty for the patch. The gladTeX program gives finer control over the LaTeX environment used to render its input. The latest version (1.1) uses the "displaymath" environment by default, which is nice for large, block-level equations, but it isn't so nice for inline math (where "math" is more appropriate). This patch causes the HTML writer to differentiate between the two by explicitly setting the LaTeX environment on the generated EQ tag.
2010-07-24pandoc.cabal: Remove profiling options from 'else' clause.John MacFarlane1-2/+2
2010-07-24README - moved links to end.John MacFarlane1-19/+19
2010-07-24Minor formatting change.John MacFarlane1-0/+1
2010-07-24Minor formatting change.John MacFarlane1-2/+3
2010-07-24Revised format of changelog to match release announcement.John MacFarlane2-437/+299
2010-07-24Added slidy data files to windows installer.John MacFarlane1-0/+1
2010-07-24Added link to epub tutorial.John MacFarlane1-1/+3
2010-07-24--offline implies --standalone.John MacFarlane1-1/+2
2010-07-24Minor changelog changes.John MacFarlane1-1/+3
2010-07-24Added release announcement.John MacFarlane1-0/+270
2010-07-23Removed unnecessary item in changelog.John MacFarlane1-4/+0
2010-07-23Updated changelog.John MacFarlane1-0/+21
2010-07-23Revised description of slide formats.John MacFarlane1-58/+26
2010-07-22Moved Text.Pandoc.Writers.S5 -> Text.Pandoc.S5.John MacFarlane4-16/+6
Now it doesn't export a writer, just some CSS and JS.
2010-07-22Removed spurious title in s5 template.John MacFarlane1-1/+0
2010-07-22Updated s5 tests.John MacFarlane2-40/+24
2010-07-22Improved cutUp function, removed extra </div>John MacFarlane1-10/+12
2010-07-22Moved s5 writing from S5 module to HTML.John MacFarlane7-80/+79
Now s5 is handled in more or less the same way as slidy, as a variant of HTML.