Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Clean up previous commit a little. renamed misc_logging to md_logging and ↵ | Waylan Limberg | 2010-07-06 | 1 | -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 upstream | Toshio Kuratomi | 2010-07-05 | 8 | -8/+8 | |
| | ||||||
* | Break cyclic import of markdown. This allows people to embed markdown | Toshio Kuratomi | 2010-07-05 | 10 | -14/+20 | |
| | | | | if they desire. | |||||
* | Fix for undefined variables that need to be imported | Toshio Kuratomi | 2010-07-05 | 2 | -2/+2 | |
| | ||||||
* | Fixed Ticket 60. The dd in definition lists can now not be indented on ↵ | Waylan Limberg | 2010-03-24 | 1 | -2/+7 | |
| | | | | secondary lines. | |||||
* | The html-tidy extension now fails gracefully when tidy is not installed on ↵ | Waylan Limberg | 2010-03-25 | 1 | -2/+6 | |
| | | | | the system -- markdown continues without it. | |||||
* | Changed the default style used by pygments in the codehilite extension. ↵ | Waylan Limberg | 2010-03-25 | 1 | -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 Limberg | 2010-02-22 | 1 | -1/+1 | |
| | ||||||
* | Removed imagelinks extension. It never worked without some third party code ↵ | Waylan Limberg | 2010-02-13 | 1 | -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 Dijk | 2010-01-25 | 2 | -81/+80 | |
| | | | | highlited when codehilite extension is enabled | |||||
* | Added pygments support to fenced_code | Lucas van Dijk | 2010-01-24 | 1 | -13/+64 | |
| | ||||||
* | Added processing of markdown text within raw html to the 'extra' extension. ↵ | Waylan Limberg | 2010-01-03 | 1 | -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 Losh | 2009-12-25 | 1 | -1/+4 | |
| | ||||||
* | Fixed Ticket 37. When multiple markdown documents are displayed on one page and | Waylan Limberg | 2009-07-21 | 1 | -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 Limberg | 2009-07-21 | 1 | -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 Limberg | 2009-06-05 | 1 | -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 Limberg | 2009-03-21 | 1 | -0/+9 | |
| | | | | regression test to make sure it continues to work. | |||||
* | Cleaning up some stuff from last commit. | Waylan Limberg | 2009-03-20 | 1 | -1/+1 | |
| | ||||||
* | Fixed a few bugs in wikilinks url cleaning. And for those who don't like the ↵ | Waylan Limberg | 2009-03-20 | 1 | -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 Limberg | 2009-03-18 | 1 | -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 Limberg | 2009-03-13 | 1 | -5/+8 | |
| | | | | duplicate id counter. | |||||
* | Replacement Tables extension. This one actually uses a known (PHP Extra) ↵ | Waylan Limberg | 2009-03-11 | 1 | -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 Limberg | 2009-03-09 | 1 | -2/+1 | |
| | | | | major refactor, but it at least works as documented. | |||||
* | Updated fenced_code extension to fit in with consensious on Markdown list. ↵ | Waylan Limberg | 2009-02-02 | 1 | -5/+5 | |
| | | | | Language is defined on first line rather than last, and currly brackets around language are optional. | |||||
* | Added html_tidy extension. | Waylan Limberg | 2009-01-27 | 1 | -0/+62 | |
| | ||||||
* | Getting rid of has_key for compatibility with python3k. | Yuri Takhteyev | 2008-12-04 | 1 | -2/+2 | |
| | ||||||
* | Fixed rss extension (I think). It throws away any paragraphs before first ↵ | Waylan Limberg | 2008-11-23 | 1 | -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 Limberg | 2008-11-22 | 1 | -13/+13 | |
| | ||||||
* | Added definition lists to extra extension. | Waylan Limberg | 2008-11-22 | 1 | -6/+3 | |
| | ||||||
* | Updated rss extension for package refactor. However, is is still failing if ↵ | Waylan Limberg | 2008-11-22 | 1 | -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 Limberg | 2008-11-22 | 1 | -1/+1 | |
| | ||||||
* | Fixed minor typo in each of previous two commits. | Waylan Limberg | 2008-11-22 | 1 | -1/+1 | |
| | ||||||
* | Updated definition list extension to work with new block parser. | Waylan Limberg | 2008-11-22 | 1 | -169/+67 | |
| | ||||||
* | Updated headerid extension for recent refactors (both BlockParser and package). | Waylan Limberg | 2008-11-20 | 1 | -80/+100 | |
| | ||||||
* | Updated meta extension for new refactor. | Waylan Limberg | 2008-11-20 | 1 | -1/+1 | |
| | ||||||
* | Updated abbr extension for new refactor. | Waylan Limberg | 2008-11-20 | 1 | -3/+3 | |
| | ||||||
* | Updated toc extension for new refactor. | Waylan Limberg | 2008-11-20 | 1 | -5/+5 | |
| | ||||||
* | Updated wikilinks extension for new refactor. | Waylan Limberg | 2008-11-20 | 1 | -3/+3 | |
| | ||||||
* | Updated codehilite extension for new refactor. | Waylan Limberg | 2008-11-20 | 1 | -1/+1 | |
| | ||||||
* | Updated footnotes extension for new refactor. | Waylan Limberg | 2008-11-20 | 1 | -6/+6 | |
| | ||||||
* | Updated tables extension for refactor. | Waylan Limberg | 2008-11-20 | 1 | -3/+3 | |
| | ||||||
* | Moved markdown_extensions/ to markdown/extensions. Markdown is now one ↵ | Waylan Limberg | 2008-11-20 | 15 | -0/+2299 | |
package instead of two. |