Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-06-01 | Textile writer: fix closing tag for math output | Albert Krewinkel | 1 | -7/+7 | |
Opening and closing tag for math output match now. | |||||
2019-02-25 | Shared.compactify: Avoid mixed lists. | John MacFarlane | 1 | -1/+1 | |
This improves on the original fix to #5285 by preventing other mixed lists (lists with a mix of Plain and Para elements) that were allowed given the original fix. | |||||
2018-09-19 | Markdown reader: distinguish autolinks in the AST. | John MacFarlane | 1 | -1/+1 | |
With this change, autolinks are parsed as Links with the `uri` class. (The same is true for bare links, if the `autolink_bare_uris` extension is enabled.) Email autolinks are parsed as Links with the `email` class. This allows the distinction to be represented in the URI. Formerly the `uri` class was added to autolinks by the HTML writer, but it had to guess what was an autolink and could not distinguish `[http://example.com](http://example.com)` from `<http://example.com>`. It also incorrectly recognized `[pandoc](pandoc)` as an autolink. Now the HTML writer simply passes through the `uri` attribute if it is present, but does not add anything. The Textile writer has been modified so that the `uri` class is not explicitly added for autolinks, even if it is present. Closes #4913. | |||||
2017-05-25 | Added `spaced_reference_links` extension. | John MacFarlane | 1 | -4/+0 | |
This is now the default for pandoc's Markdown. It allows whitespace between the two parts of a reference link: e.g. [a] [b] [b]: url This is now forbidden by default. Closes #2602. | |||||
2017-02-04 | Moved tests/ -> test/. | John MacFarlane | 1 | -0/+723 | |