Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-01-26 | Add support for attributes in inline Code. | John MacFarlane | 1 | -2/+2 | |
Additional related changes: * URLs in Code in autolinks now use class "url". * Require highlighting-kate 0.2.8.2, which omits the final <br/> tag, essential for inline code. | |||||
2011-01-26 | Bumped version to 1.8; depend on pandoc-types 1.8. | John MacFarlane | 1 | -2/+3 | |
The old TeX, HtmlInline and RawHtml elements have been removed and replaced by generic RawInline and RawBlock elements. All modules updated to use the new raw elements. | |||||
2011-01-23 | Textile writer: Don't HTML-escape between @'s. | John MacFarlane | 1 | -1/+1 | |
2011-01-23 | Textile reader: Fixed bug (swallowed p at beginning of paragraph). | John MacFarlane | 1 | -3/+3 | |
The problem was a missing 'try' in the maybeExplicitBlock parser. Test case, a paragraph beginning with 'p', has been added. | |||||
2011-01-23 | Textile reader: Support <tt> for inline code. | John MacFarlane | 1 | -3/+11 | |
2011-01-23 | Textile reader: Added code blocks with bc. | John MacFarlane | 1 | -2/+11 | |
2010-12-30 | Textile reader: Slight speed improvement. | John MacFarlane | 1 | -5/+5 | |
2010-12-30 | New HTML reader using tagsoup as a lexer. | John MacFarlane | 1 | -15/+15 | |
* The new reader is faster and more accurate. * API changes for Text.Pandoc.Readers.HTML: - removed rawHtmlBlock, anyHtmlBlockTag, anyHtmlInlineTag, anyHtmlTag, anyHtmlEndTag, htmlEndTag, extractTagType, htmlBlockElement, htmlComment - added htmlTag, htmlInBalanced, isInlineTag, isBlockTag, isTextTag * tagsoup is a new dependency. * Text.Pandoc.Parsing: Generalized type on readWith. * Benchmark.hs: Added length calculation to force full evaluation. * Updated HTML reader tests. * Updated markdown and textile readers to use the functions from the HTML reader. * Note: The markdown reader now correctly handles some cases it did not before. For example: <hr/> is reproduced without adding a space. <script> a = '<b>'; </script> is parsed correctly. | |||||
2010-12-09 | textile redcloth definition lists | paul.rivier | 1 | -2/+29 | |
2010-12-09 | Textile reader: better treatment of acronyms. | John MacFarlane | 1 | -1/+1 | |
We now parse PBS(Public Broadcasting System) as if it were "PBS (Public Broadcasting System)". | |||||
2010-12-08 | Textile reader: Implemented footnotes. | John MacFarlane | 1 | -4/+43 | |
2010-12-07 | Moved smartPunctuation from Markdown to Parsing. | John MacFarlane | 1 | -10/+5 | |
+ Parameterized smartPunctuation on an inline parser. + Handle smartPunctuation in Textile reader. | |||||
2010-12-07 | Textile reader: implemented acronyms, (tm), (r), (c). | John MacFarlane | 1 | -6/+29 | |
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 | 1 | -0/+13 | |
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 | 1 | -2/+10 | |
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 | Textile reader: parse raw by default. | John MacFarlane | 1 | -0/+2 | |
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 | 1 | -7/+31 | |
2010-12-03 | html inlines and html blocks handling in textile reader | Paul Rivier | 1 | -17/+26 | |
2010-12-03 | textile reader now ignores html/css attributes | Paul Rivier | 1 | -8/+34 | |
2010-12-03 | removed support for textile Inserted construct | Paul Rivier | 1 | -5/+1 | |
2010-12-03 | fix autolink by promoting it in the parser list, fix table parabreak | Paul Rivier | 1 | -7/+5 | |
2010-12-03 | more support for Textile reader (explicit links, images), tests and cabal ↵ | Paul Rivier | 1 | -17/+44 | |
entries | |||||
2010-12-03 | simpler table cell handling | paul.rivier | 1 | -24/+12 | |
2010-12-03 | preliminary material toward table support | paul.rivier | 1 | -1/+64 | |
2010-12-03 | textile reader now imports import Text.Pandoc.Parsing | paul.rivier | 1 | -1/+2 | |
2010-12-03 | Basic Textile Reader | paul.rivier | 1 | -0/+253 | |