aboutsummaryrefslogtreecommitdiffstats
path: root/markdown_extensions/def_list.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed Definition List extension to use a regex rather than a strict string ↵Waylan Limberg2008-11-051-46/+44
| | | | match. Whitespcae is now mor eflexable and better matches other implementations. Also refactored all definition specific code into one method.
* Fixed a silly bug in Definition List extension. Also added tests. As this ↵Waylan Limberg2008-11-051-2/+2
| | | | extension modifies the core, we should test that all core parseing still works properly. Thanks for the report John Szakmeister.
* Fixed Definition List extension to not wrap the content of defs in p tags ↵Waylan Limberg2008-11-041-5/+8
| | | | when appropriate.
* Added support to Definition List extension for blank lines between terms and ↵Waylan Limberg2008-11-041-0/+7
| | | | first def. Includes tests. That was easier than expected.
* Added Definition List extension. This is a first draft. A few more advanced ↵Waylan Limberg2008-11-041-0/+198
features in PHP's implementation don't work yet. Most notably a blank line between a term and its first definition will break things. See the included test for what works.