summaryrefslogtreecommitdiff
path: root/markdown/extensions/toc.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix #4. Links in headers no longer munge up table of contents in TOC extension.Waylan Limberg2011-05-041-3/+10
|
* Extension.getConfigs returns a dict and is used by the extensions that use ↵Waylan Limberg2011-05-041-6/+6
| | | | configs. No more self.config['name'][0] weirdness anymore.
* Rename misc.py to util.py at the request of upstreamToshio Kuratomi2010-07-051-1/+1
|
* Break cyclic import of markdown. This allows people to embed markdownToshio Kuratomi2010-07-051-1/+1
| | | | if they desire.
* Fix the TOC extension for TOCs starting at levels other than 1.Steve Losh2009-12-251-1/+4
|
* Fixed TOC extension to properly nest multiple header levels in the table of ↵Waylan Limberg2009-07-211-7/+3
| | | | contents. Specificly, when stepping back multiple levels, the nestsed listed now follow suite. Test included. Thanks for the patch Jack Miller.
* Fixed bug in toc extension and added a test. We now disallow the marker in ↵Waylan Limberg2009-03-181-1/+4
| | | | any headers (h1-6) as this crashes markdown with an infinite loop trying to build the toc. Thanks for the report Holger Rapp.
* Getting rid of has_key for compatibility with python3k.Yuri Takhteyev2008-12-041-2/+2
|
* Updated toc extension for new refactor.Waylan Limberg2008-11-201-5/+5
|
* Moved markdown_extensions/ to markdown/extensions. Markdown is now one ↵Waylan Limberg2008-11-201-0/+137
package instead of two.