summaryrefslogtreecommitdiff
path: root/markdown/extensions
Commit message (Collapse)AuthorAgeFilesLines
...
* Clean up previous commit a little. renamed misc_logging to md_logging and ↵Waylan Limberg2010-07-061-1/+2
| | | | fixed imports. We import logging levels from logging directly and only import message from md_logging.
* Rename misc.py to util.py at the request of upstreamToshio Kuratomi2010-07-058-8/+8
|
* Break cyclic import of markdown. This allows people to embed markdownToshio Kuratomi2010-07-0510-14/+20
| | | | if they desire.
* Fix for undefined variables that need to be importedToshio Kuratomi2010-07-052-2/+2
|
* Fixed Ticket 60. The dd in definition lists can now not be indented on ↵Waylan Limberg2010-03-241-2/+7
| | | | secondary lines.
* The html-tidy extension now fails gracefully when tidy is not installed on ↵Waylan Limberg2010-03-251-2/+6
| | | | the system -- markdown continues without it.
* Changed the default style used by pygments in the codehilite extension. ↵Waylan Limberg2010-03-251-1/+1
| | | | This was a recently added feature, but older versions of pygments don't know what the 'tango' style is, so we now use pygemnts 'default' by default. Not sure why the 'tango' style was used here in the first place. I'm guess it was the preferance of whoever contributed the patch.
* Fixed some code that wasn't Python 2.4 compatible.Waylan Limberg2010-02-221-1/+1
|
* Removed imagelinks extension. It never worked without some third party code ↵Waylan Limberg2010-02-131-119/+0
| | | | that has never been shipped with Markdown anyway - and that code it not readily available. See list discussion for more info.
* Refactored codehilite and fenced code, so now fenced code will also be ↵Lucas van Dijk2010-01-252-81/+80
| | | | highlited when codehilite extension is enabled
* Added pygments support to fenced_codeLucas van Dijk2010-01-241-13/+64
|
* Added processing of markdown text within raw html to the 'extra' extension. ↵Waylan Limberg2010-01-031-0/+2
| | | | Fixes Ticket 39. NOTE: I did not add a seperate extension which only adds this feature - it is only available as part of 'extra'.
* Fix the TOC extension for TOCs starting at levels other than 1.Steve Losh2009-12-251-1/+4
|
* Fixed Ticket 37. When multiple markdown documents are displayed on one page andWaylan Limberg2009-07-211-5/+19
| | | | | contain footnotes with the same name, they will no longer collide when 'UNIQUE_IDS' is set to True. Thanks to Paul Stansifer for report and patch.
* 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.
* Removing legacy extension. No real need to keep that old core around. I ↵Waylan Limberg2009-06-051-468/+0
| | | | created it as a novialty and for comparisive testing anyway. We've moved on, it no longer works and I don't want to maintain it. It's in the git log if anyone wants it.
* Fixed a documentation error with recent wikilinks update and added a ↵Waylan Limberg2009-03-211-0/+9
| | | | regression test to make sure it continues to work.
* Cleaning up some stuff from last commit.Waylan Limberg2009-03-201-1/+1
|
* Fixed a few bugs in wikilinks url cleaning. And for those who don't like the ↵Waylan Limberg2009-03-201-5/+13
| | | | default, added a config which accepts a callable to replace the default. Updated tests and docs.
* 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.
* Fixed ticket 25. Added reset to HeaderID extension. Reset now resets the ↵Waylan Limberg2009-03-131-5/+8
| | | | duplicate id counter.
* Replacement Tables extension. This one actually uses a known (PHP Extra) ↵Waylan Limberg2009-03-111-52/+80
| | | | syntax and is implemented as a blockprocessor. Currently, Markdown doesn't see table elements as block elements, so it doesn't get prettified.
* Fixed bug in tables extension (ticket 24). This extension could still use a ↵Waylan Limberg2009-03-091-2/+1
| | | | major refactor, but it at least works as documented.
* Updated fenced_code extension to fit in with consensious on Markdown list. ↵Waylan Limberg2009-02-021-5/+5
| | | | Language is defined on first line rather than last, and currly brackets around language are optional.
* Added html_tidy extension.Waylan Limberg2009-01-271-0/+62
|
* Getting rid of has_key for compatibility with python3k.Yuri Takhteyev2008-12-041-2/+2
|
* Fixed rss extension (I think). It throws away any paragraphs before first ↵Waylan Limberg2008-11-231-14/+10
| | | | header, but I think that's what is was trying to do (and failing loadly) before.
* Updated imagelinks extension for recent package refactor.Waylan Limberg2008-11-221-13/+13
|
* Added definition lists to extra extension.Waylan Limberg2008-11-221-6/+3
|
* Updated rss extension for package refactor. However, is is still failing if ↵Waylan Limberg2008-11-221-2/+2
| | | | a paragraph comes before the first header in source. There are no tests or documentation and I've never used it so I'm not sure what it should be doing. Leaving it as is for now.
* Updated fenced_code extension for package refactor.Waylan Limberg2008-11-221-1/+1
|
* Fixed minor typo in each of previous two commits.Waylan Limberg2008-11-221-1/+1
|
* Updated definition list extension to work with new block parser.Waylan Limberg2008-11-221-169/+67
|
* Updated headerid extension for recent refactors (both BlockParser and package).Waylan Limberg2008-11-201-80/+100
|
* Updated meta extension for new refactor.Waylan Limberg2008-11-201-1/+1
|
* Updated abbr extension for new refactor.Waylan Limberg2008-11-201-3/+3
|
* Updated toc extension for new refactor.Waylan Limberg2008-11-201-5/+5
|
* Updated wikilinks extension for new refactor.Waylan Limberg2008-11-201-3/+3
|
* Updated codehilite extension for new refactor.Waylan Limberg2008-11-201-1/+1
|
* Updated footnotes extension for new refactor.Waylan Limberg2008-11-201-6/+6
|
* Updated tables extension for refactor.Waylan Limberg2008-11-201-3/+3
|
* Moved markdown_extensions/ to markdown/extensions. Markdown is now one ↵Waylan Limberg2008-11-2015-0/+2299
package instead of two.