aboutsummaryrefslogtreecommitdiffstats
path: root/markdown_extensions/wikilinks.py
Commit message (Collapse)AuthorAgeFilesLines
* Added extension doctests to the regression tests and fixed a few broken ↵Waylan Limberg2008-10-141-4/+4
| | | | doctests in CodeHilite and WikiLinks extentions.
* Incorporated Ben Wilson's Treap implementation.Yuri Takhteyev2008-10-121-3/+3
| | | | | | | Pre-processors, post-processors, patterns, etc. are now all stored in Treaps. We can then insert items between them with code like this: markdown.inlinePatterns.add("foo", FooPattern(), "<strong")
* [Wikilinks] Restricted regex to only match [[bracketed links]] with safe ↵Waylan Limberg2008-09-201-2/+1
| | | | chars: 'A-Za-z0-9_-' and space.
* Added 'wikilinks' (note the 's') extension to replace the 'wikilink' ↵Waylan Limberg2008-09-201-0/+139
extension. As there are some problems with 'CamelCase' links, the new extension uses '[[bracketed links]]'.