Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-12-03 | Textile reader: temporarily removed smartPunctuation. | John MacFarlane | 1 | -2/+2 | |
The smartPuncutation parser from the markdown parser was being used, but this creates two problems: * smart punctuation rules are slightly different in textile, for example, a single dash wish space around becomes an En dash. * the following gets parsed as a double quoted string followed by a colon, rather than as a link: "emphasized text":http://my.url.com This needs rethinking. | |||||
2010-12-03 | Textile reader: added hrule parser. | John MacFarlane | 2 | -1/+14 | |
2010-12-03 | Textile reader: Turn on smart punctuation by default. | John MacFarlane | 1 | -2/+2 | |
2010-12-03 | Textile reader: drop leading, trailing newline in pre block. | John MacFarlane | 2 | -4/+12 | |
This is consistent with how the other readers work. | |||||
2010-12-03 | Textile reader: modified str to handle acronyms, hyphens. | John MacFarlane | 1 | -3/+16 | |
* A single hyphen between two word characters is no longer a potential strikeout-starter. * Acronym explanations are dropped. | |||||
2010-12-03 | Use textile reader by default for .textile extension. | John MacFarlane | 1 | -0/+1 | |
2010-12-03 | Textile reader: updated test suite to include raw HTML. | John MacFarlane | 1 | -6/+6 | |
2010-12-03 | Textile reader: parse raw by default. | John MacFarlane | 2 | -1/+3 | |
It's part of the textile spec to allow raw HTML, just as with markdown. -R is no longer needed in test suite. | |||||
2010-12-03 | punctuation handling, and more html-specific handling | paul.rivier | 4 | -56/+81 | |
2010-12-03 | html inlines and html blocks handling in textile reader | Paul Rivier | 3 | -18/+56 | |
2010-12-03 | textile reader now ignores html/css attributes | Paul Rivier | 3 | -9/+60 | |
2010-12-03 | removed support for textile Inserted construct | Paul Rivier | 4 | -9/+1 | |
2010-12-03 | fix autolink by promoting it in the parser list, fix table parabreak | Paul Rivier | 3 | -33/+9 | |
2010-12-03 | more support for Textile reader (explicit links, images), tests and cabal ↵ | Paul Rivier | 5 | -18/+326 | |
entries | |||||
2010-12-03 | simpler table cell handling | paul.rivier | 1 | -24/+12 | |
2010-12-03 | preliminary material toward table support | paul.rivier | 2 | -2/+68 | |
2010-12-03 | textile reader now imports import Text.Pandoc.Parsing | paul.rivier | 1 | -1/+2 | |
2010-12-03 | Basic Textile Reader | paul.rivier | 7 | -1/+262 | |
2010-11-28 | Markdown parser performance improvement. | John MacFarlane | 1 | -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-27 | OpenDocument writer: don't print raw TeX. | John MacFarlane | 2 | -8/+5 | |
2010-11-27 | LaTeX writer: Escape curly quotes. | John MacFarlane | 1 | -0/+4 | |
2010-11-27 | Minor adjustment in textile test suite. | John MacFarlane | 2 | -2/+0 | |
2010-11-27 | Merge branch 'textile' | John MacFarlane | 10 | -13/+1341 | |
Conflicts: README man/man1/pandoc.1.md pandoc.cabal | |||||
2010-11-27 | Use [] for superscripts and subscripts in textile writer. | John MacFarlane | 2 | -4/+4 | |
2010-11-27 | Fixed spacing problems in textile nested lists. | John MacFarlane | 2 | -8/+4 | |
2010-11-16 | Updated HCAR entry. | John MacFarlane | 1 | -17/+9 | |
2010-11-12 | Treat argument as URI only if it has http(s) scheme. | John MacFarlane | 1 | -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-11 | HTML reader: don't parse raw HTML inside <code> tag. | John MacFarlane | 2 | -5/+5 | |
Previously '<code><a>x</a></code>' would be parsed as Code "<a>x</a>", which is not what you want. | |||||
2010-11-09 | Allow HTML comments as inline elements in markdown. | John MacFarlane | 2 | -3/+3 | |
So, aaa <!-- comment --> bbb can be a single paragraph. | |||||
2010-10-31 | --mathjax: Use mathjax with raw latex rather than mathml. | John MacFarlane | 2 | -17/+4 | |
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 | 5 | -15/+40 | |
Added --mathjax option. Added MathJax to HTMLMathMethod. Supported MathJax in HTML writer. Resolves Issue #259. | |||||
2010-10-26 | Added test for macros. | John MacFarlane | 2 | -1/+9 | |
2010-10-26 | Documented LaTeX macros. | John MacFarlane | 1 | -0/+12 | |
2010-10-26 | Bump version to 1.6.1. | John MacFarlane | 1 | -1/+1 | |
2010-10-26 | Parse blanklines after macro definitions. | John MacFarlane | 1 | -1/+1 | |
2010-10-26 | Process LaTeX macros in markdown, and apply to TeX math. | John MacFarlane | 4 | -8/+39 | |
Example: \newcommand{\plus}[2]{#1 + #2} $\plus{3}{4}$ yields: 3+4 | |||||
2010-10-24 | Added fontsize variable to default latex template. | John MacFarlane | 1 | -1/+1 | |
This makes it easy to set the font size using markdown2pdf or pandoc: markdown2pdf -V fontsize=12pt input.txt | |||||
2010-10-24 | LaTeX & ConTeXt writers: escape [ and ] as {[} and {]}. | John MacFarlane | 4 | -12/+16 | |
This avoids unwanted interpretation as optional arguments in some contexts, which caused the brackets to silently disappear! | |||||
2010-10-24 | Changed --help message for --variable to KEY:VALUE. | John MacFarlane | 1 | -1/+1 | |
Was previously FILENAME. | |||||
2010-10-19 | TeXMath: handle variables modified with \acute, \bar, etc. | John MacFarlane | 1 | -0/+15 | |
Complete list: \acute, \grave, \breve, \check, \dot, \mathring, \vec, \overrightarrow, \overleftarrow, \hat, \tilde, \bar. | |||||
2010-10-19 | TeXMath reader: handle \textit, \textbf, etc. | John MacFarlane | 1 | -1/+5 | |
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-09-10 | Encode filenames as UTF8. | John MacFarlane | 2 | -4/+5 | |
Resolves Issue #252 (pandoc doesn't properly handle unicode filenames). | |||||
2010-08-01 | gladTeX HTML - specify ENV for display or inline. | John MacFarlane | 1 | -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-24 | pandoc.cabal: Remove profiling options from 'else' clause. | John MacFarlane | 1 | -2/+2 | |
2010-07-24 | README - moved links to end. | John MacFarlane | 1 | -19/+19 | |
2010-07-24 | Minor formatting change. | John MacFarlane | 1 | -0/+1 | |
2010-07-24 | Minor formatting change. | John MacFarlane | 1 | -2/+3 | |
2010-07-24 | Revised format of changelog to match release announcement. | John MacFarlane | 2 | -437/+299 | |