aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/extensions/toc.py
Commit message (Expand)AuthorAgeFilesLines
* Support custom labels in TOC. (#700)Waylan Limberg2018-09-051-2/+9
* Deprecate md_globals from extension API. (#697)Waylan Limberg2018-07-311-1/+1
* All Markdown instances are now 'md'. (#691)Waylan Limberg2018-07-271-6/+6
* Replace homegrown OrderedDict with purpose-built Registry. (#688)Waylan Limberg2018-07-271-5/+6
* Add toc_depth parameter to toc extensionJesús Fernández2018-07-241-2/+7
* Better check of allowed TOC location #639 (#641)Charles de Beauchesne2018-03-081-10/+12
* Remove deprecated support for Extension args.Waylan Limberg2018-01-131-4/+4
* Improve test coverage.Waylan Limberg2018-01-131-2/+2
* Removed deprecated safe_mode.Waylan Limberg2018-01-111-3/+1
* Make sure regex patterns are raw strings (#614)Isaac Muse2018-01-021-2/+2
* Switch docs to MKDocs (#602)Waylan Limberg2017-12-061-1/+1
* toc: Remove children from header element after iteratingDmitry Shachnev2016-03-171-1/+2
* Add Comment support to toc.Waylan Limberg2015-03-141-2/+2
* Use newer ElementTree API to avoid future breakage.Waylan Limberg2015-01-311-1/+1
* More refactor of TOC Extension.Waylan Limberg2015-01-011-24/+24
* HeaderId Extension marked as Pending Deprecation.Waylan Limberg2015-01-011-13/+64
* PendingDeprecationWarning (v2.5) => DeprecationWarning (v2.6)Waylan Limberg2014-12-301-4/+4
* Preserve order of nested headers in TOCWaylan Limberg2014-12-301-49/+55
* Complete test coverage of TOC ExtensionWaylan Limberg2014-12-301-8/+6
* Always add toc to Markdown Class InstanceWaylan Limberg2014-12-301-6/+6
* Add reset support to TOC extension.Waylan Limberg2014-12-301-0/+6
* Flake8 cleanup (mostly whitespace).Waylan Limberg2014-11-201-44/+49
* Issue #366 Recursion error in toc extfacelessuser2014-11-171-48/+47
* Fixed TOC Option parsing.Waylan Limberg2014-09-251-2/+2
* Standardized all extension header comments to a uniform format.Waylan Limberg2014-08-211-4/+8
* 'http://packages.python.org/Markdown/' => 'https://pythonhosted.org/Markdown/...Waylan Limberg2014-08-211-1/+1
* Update extensions for Extension.__init__ refactorWaylan Limberg2014-07-311-22/+22
* toc: insert `¶` instead of raw unicode characterDmitry Shachnev2013-09-291-3/+3
* Add new "permalink" option to toc extensionDmitry Shachnev2013-09-251-13/+31
* Add new utility function parseBoolValue()Dmitry Shachnev2013-09-251-2/+2
* Extended headerid's rawHTML in id handling to toc ext.Waylan Limberg2013-08-111-2/+3
* Future imports go after the docstringsAdam Dinwoodie2013-03-181-1/+1
* Merge branch '2and3'Waylan Limberg2013-02-271-5/+8
|\
| * Now using universal code for Python 2 & 3.Waylan Limberg2013-02-271-5/+8
* | Missed a set.append -> set.add.Waylan Limberg2013-02-251-1/+1
|/
* Change `set.append` -> `set.add` in `headerid.unique`Waylan Limberg2013-02-221-1/+1
* More TOC cleanup and added tests.Waylan Limberg2013-02-191-2/+2
* TOC list item names must use text from all children.Waylan Limberg2013-02-191-1/+1
* Updated toc extension to work with changes @ 4ff74e3.Waylan Limberg2013-02-191-2/+2
* Ensure toc attribute is available on Markdown class.Waylan Limberg2013-02-191-3/+3
* Do not use assigned names "next" and "id", rename to order_toc_list and clean...benjaoming2013-02-181-18/+20
* code cleanupbenjaoming2013-02-181-13/+12
* Make TocTreeprocessor extendable and be more gentle on badly structured headingsbenjaoming2013-02-171-63/+126
* Fixed #106. Replaced all references to freewisdom.org (except for Yuri's home...Waylan Limberg2012-06-281-1/+1
* Fixed #49. Don't crash on poorly/randomly ordered header levels. Maybe someda...Waylan Limberg2011-10-301-42/+46
* Fixed #44. The TOC extension will now except True/False in addition to 1/0 fr...Waylan Limberg2011-10-061-1/+1
* TOC extension now attaches toc to Markdown instance (Markdown.toc), but only ...Waylan Limberg2011-08-041-0/+11
* Updated toc extension's anchorlink option to work properly with recent refactor.Waylan Limberg2011-07-141-2/+6
* Refactored the toc extension. Fixes #33: The [TOC] marker is now ignored in c...Waylan Limberg2011-07-141-28/+17
* Fix #4. Links in headers no longer munge up table of contents in TOC extension.Waylan Limberg2011-05-041-3/+10