Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-02-05 | HTML writer: stringify alt text. | John MacFarlane | 2 | -2/+6 | |
Previously, if you had formatting in the label of an Image element, you'd get escaped HTML in the alt attribute. Now you just get a plain string version, which seems preferable. | |||||
2011-02-04 | Improved HTML table output (line breaks). | John MacFarlane | 1 | -9/+17 | |
2011-02-04 | More changes to HTML output. | John MacFarlane | 1 | -25/+23 | |
Removed blank lines. More consistent format. | |||||
2011-02-04 | HTML writer: Spacing adjustments for Plain and RawHtml blocks. | John MacFarlane | 1 | -0/+2 | |
2011-02-04 | Improved new HTML format; restored original --no-wrap behavior. | John MacFarlane | 1 | -52/+76 | |
2011-02-04 | HTML writer: More normal line breaks. | John MacFarlane | 1 | -25/+29 | |
Also removes any distinction between --no-wrap and default HTML output. Resolves Issue #134. | |||||
2011-02-04 | Native writer test: in block list test, limit to list < 20 blocks. | John MacFarlane | 1 | -2/+3 | |
2011-02-04 | Added cCommented-out round-trip property in markdown reader test. | John MacFarlane | 1 | -0/+18 | |
2011-02-04 | Shared: Minor refactoring. | John MacFarlane | 1 | -1/+4 | |
2011-02-04 | Improved Arbitrary instance. | John MacFarlane | 1 | -32/+45 | |
2011-02-04 | normalize: Normalize spaces too. | John MacFarlane | 2 | -5/+15 | |
In normal form, Space elements only occur to separate two non-Space elements. So, we never have [Space], or [, ..., Space]. | |||||
2011-02-04 | markdown2pdf: Fixed bug with output file extensions. | John MacFarlane | 1 | -1/+1 | |
Previously 'markdown2pdf test.txt -o test.en.pdf' would produce 'test.pdf', not 'test.en.pdf'. Thanks to Paolo Tanimoto for the fix. | |||||
2011-02-01 | Markdown reader: Simplified and corrected footnote block parser. | John MacFarlane | 2 | -8/+11 | |
2011-02-01 | Added a (failing) test for footnotes. | John MacFarlane | 1 | -1/+4 | |
2011-01-31 | Improved fix to markdown noteBlock parser. | John MacFarlane | 2 | -9/+4 | |
The last patch did not handle cases with > 4 spaces. Also added a more general test case. | |||||
2011-01-31 | Markdown reader: Fixed whitespace footnote bug (Jesse Rosenthal). | John MacFarlane | 2 | -1/+12 | |
The problem was in input like this: [^1]: note not in note. Also added a test case for this. | |||||
2011-01-30 | UTF8: Use #if instead of #ifdef. | John MacFarlane | 1 | -1/+1 | |
2011-01-30 | UTF8 module: Use base 4.2 IO if available. | John MacFarlane | 1 | -1/+44 | |
This gives us proper line endings on windows, and some speed improvements. We fall back to the old functions if base < 4.2. hGetContents is now exported. | |||||
2011-01-30 | pandoc.hs: Simplified code for writing result. | John MacFarlane | 1 | -18/+14 | |
2011-01-30 | LaTeX reader: Fixed bug with whitespace at beginning of file. | John MacFarlane | 2 | -2/+11 | |
Previously a file beginning " hi" would cause a parse error. Also cleaned up comment parsing. | |||||
2011-01-29 | Markdown reader tables: Fixed bug in alignments. | John MacFarlane | 1 | -4/+5 | |
Previously pandoc got confused by blank rows in the header. | |||||
2011-01-29 | Highlighting: Fixed non-highlighting-kate version of highlightHtml. | John MacFarlane | 1 | -2/+2 | |
2011-01-29 | Added HTML writer tests for inline code. | John MacFarlane | 2 | -0/+43 | |
2011-01-29 | HTML writer: avoid doubled <code> tag for highlighted inline code. | John MacFarlane | 1 | -4/+5 | |
2011-01-29 | Fixed highlighting for inline code. | John MacFarlane | 2 | -4/+8 | |
highlightHtml in Highlighting now has a boolean argument that selects between inline and block content. Revised tests for new highlighting-kate. | |||||
2011-01-29 | Moved tests to src. | John MacFarlane | 10 | -0/+868 | |
2011-01-29 | Shared: Fixed bug in normalize revealed by tests! | John MacFarlane | 1 | -4/+5 | |
2011-01-28 | Support --listings in markdown2pdf (Etienne Millon). | John MacFarlane | 1 | -1/+1 | |
2011-01-28 | Add possibility to use listings package for code blocks and | Josef Svenningsson | 3 | -9/+51 | |
inline code in the LaTeX writer. | |||||
2011-01-28 | RST reader: skip blanklines at beginning, not all leading spaces. | John MacFarlane | 1 | -1/+1 | |
If you skip all spaces, it becomes impossible to start with a blockquote. | |||||
2011-01-28 | Shared: Make 'normalize' more generic. | John MacFarlane | 1 | -1/+1 | |
Now it can transform an Inline, [Inline], Block, [Block], or Pandoc. | |||||
2011-01-28 | RST reader: Skip blank space at beginning. | John MacFarlane | 1 | -0/+1 | |
Resolves Debian Bug #611328. | |||||
2011-01-28 | RTF writer: Embed images when possible. | John MacFarlane | 3 | -7/+34 | |
* Resolves Issue #275. * PNG and JPEG supported. * Export rtfEmbedImage. | |||||
2011-01-26 | Add support for attributes in inline Code. | John MacFarlane | 21 | -77/+99 | |
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 | RST reader: Improved field lists. | John MacFarlane | 1 | -59/+56 | |
Field lists now work properly with block content. (Thanks to Lachlan Musicman for pointing out the bug.) In addition, definition list items are now always Para instead of Plain -- which matches behavior of rst2xml.py. Finally, in image blocks, the alt attribute is parsed properly and used for the alt, not also the title. | |||||
2011-01-26 | LaTeX reader: Fixed an incomplete pattern match. | John MacFarlane | 1 | -1/+3 | |
2011-01-26 | RST reader: Include line breaks in raw field list parser output. | John MacFarlane | 1 | -1/+3 | |
Note: field list items can have lists, etc. as values. | |||||
2011-01-26 | RST reader: Allow spaces in field list names. | John MacFarlane | 1 | -1/+1 | |
2011-01-26 | Adjusted writers to use "tex". | John MacFarlane | 5 | -8/+9 | |
2011-01-26 | Markdown reader: Don't parse latex/context environments as inline. | John MacFarlane | 1 | -9/+15 | |
2011-01-26 | Distinguish latex & context environments; blank line after in writers. | John MacFarlane | 3 | -7/+6 | |
2011-01-26 | Bumped version to 1.8; depend on pandoc-types 1.8. | John MacFarlane | 21 | -91/+118 | |
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 | Added needed space after .bc and .bq. | John MacFarlane | 1 | -15/+15 | |
Otherwise these can trap a </dd>, for example. Better solution to try next: rewrite using Pretty. | |||||
2011-01-23 | Textile writer: Don't escape code in bc. block. | John MacFarlane | 1 | -1/+1 | |
2011-01-23 | Textile writer: Don't HTML-escape between @'s. | John MacFarlane | 2 | -2/+2 | |
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 writer: Use <pre> instead of bc.. for code with blank lines. | John MacFarlane | 1 | -5/+8 | |
This has fewer interaction effects. | |||||
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 | |
2011-01-23 | Default to textile writer on .textile extension. | John MacFarlane | 1 | -0/+1 | |