| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Allow UPPERCASE urls in auto links. | Waylan Limberg | 2011-10-06 | 1 | -1/+1 |
| | | |||||
| * | Fixed #39. Refactored escaping so that it only escapes a predifined set of ↵ | Waylan Limberg | 2011-08-17 | 1 | -3/+13 |
| | | | | | chars (the set defined by JG in the syntax rules). All other backslashes are passed through unaltered by the parser. If extensions want to add to the escapable chars, they can append to the list at markdown.ESCAPED_CHARS. | ||||
| * | Fixed #23. Turns out markdown.pl only allows up to one space between ↵ | Waylan Limberg | 2011-06-16 | 1 | -2/+2 |
| | | | | | brackets in reference links. Now we do as well. | ||||
| * | Fixed #19. Improved Start Emphasis regex. | Waylan Limberg | 2011-06-07 | 1 | -1/+1 |
| | | |||||
| * | Minor adjustment to previous commit. Reference links don't need unescaped as ↵ | Waylan Limberg | 2011-06-02 | 1 | -4/+4 |
| | | | | | they are removed before escaping takes place. Related to issue #14. | ||||
| * | Partial fix of issue #14. hrefs (and titles) are now unescaped, but it ↵ | Waylan Limberg | 2011-06-02 | 1 | -10/+23 |
| | | | | | uppears that we are loosing escaped backslashes (both in the href and in the link label in the example given in issue 14. | ||||
| * | Fixed a few inline issues found from running the currenlty skipped tests ↵ | Waylan Limberg | 2010-11-04 | 1 | -7/+9 |
| | | | | | from tests/pl/Tests_2007/. Namely, improved simple reference links and fixed a small issue with titles in links. | ||||
| * | Added short reference links. No more hanging empty brackets on reference ↵ | Waylan Limberg | 2010-10-11 | 1 | -12/+15 |
| | | | | | links; i.e., [this works]. Associated with and noted as missing when debuging Ticket 79. | ||||
| * | Fixed Ticket 79. Linebreaks in reference link identifiers are now ignored. ↵ | Waylan Limberg | 2010-10-11 | 1 | -0/+5 |
| | | | | | This matches the most recent version of markdown.pl among other implementations and allows links to work after editors do autolinebreak stuff to text. | ||||
| * | Added the re.UNICODE flag to inlinepatterns. Now all inlinepattern regex ↵ | Waylan Limberg | 2010-09-20 | 1 | -1/+2 |
| | | | | | will match unicode characters when \w, \b, or \s is used. Also updated docs to reflect change. | ||||
| * | Fixed Ticket 66. We have dropped official support for Python 3.0 and now ↵ | Waylan Limberg | 2010-07-14 | 1 | -4/+7 |
| | | | | | only officially support Python 3.1+ in the Python 3 series (we still support 2.4, 2.5 & 2.6 in the Python 2 series). If you really must use Python 3.0, we suggest using Python 3.1's 2to3 tool. See comment in source and Ticket 66 for more. | ||||
| * | A better implementation of globals as attributes on the Markdown class. This ↵ | Waylan Limberg | 2010-07-07 | 1 | -2/+2 |
| | | | | | should be more future proof. | ||||
| * | Factored out the building of the various processors and patterns into ↵ | Waylan Limberg | 2010-07-07 | 1 | -0/+28 |
| | | | | | utility functions called by a build_parser method on the Markdown class. Editing of the processors and patterns now all happen in one file for each type. Additionaly, a subclass of Markdown could potentially override the build_parser method and build a parser for a completely differant markup language without first building the default and then overriding it. | ||||
| * | Moved a bunch of global variables to the instance of the Markdown class. | Waylan Limberg | 2010-07-06 | 1 | -7/+3 |
| | | |||||
| * | Rename misc.py to util.py at the request of upstream | Toshio Kuratomi | 2010-07-05 | 1 | -21/+21 |
| | | |||||
| * | Break cyclic import of markdown. This allows people to embed markdown | Toshio Kuratomi | 2010-07-05 | 1 | -21/+21 |
| | | | | | if they desire. | ||||
| * | Fixed Ticket 38. With smart_emphasis turned on, emphasised text can now be ↵ | Waylan Limberg | 2009-07-21 | 1 | -1/+1 |
| | | | | | wrapped in punctuation without spaces and still will be converted to emphasis (ie: '[_foo_]'). Test included. Thanks for the report seanh. | ||||
| * | Fixed ticket 33. Tweaked the regex for inline links so that the title is ↵ | Waylan Limberg | 2009-05-06 | 1 | -1/+1 |
| | | | | | non-greedy - it no longer eats everything between the first links title and the last links title in a paragraph. Thanks to Charles Winebrinner for the report. | ||||
| * | Improved inline pattern regex for em & strong and added tests. Fixes Ticket ↵ | Waylan Limberg | 2009-03-30 | 1 | -6/+6 |
| | | | | | 30 and other related issues. Note that I went with php's behavior rather than perl's when we have have three (ie.: *** or ___) without a closing three. | ||||
| * | Fixed attribute creation to remove newlines and associated misc/uche test. ↵ | Waylan Limberg | 2008-12-08 | 1 | -1/+1 |
| | | | | | Apparently differant versions of ElementTree encode line breaks in attributes differantly. Therefore, we just remove any such linebreaks as they are insignificant anyway. | ||||
| * | Different way of importing htmlentitydefs for python 3.0 and disabling diff ↵ | Yuri Takhteyev | 2008-12-04 | 1 | -1/+5 |
| | | | | | | | output in test-markdown.py for the same. | ||||
| * | Getting rid of has_key for compatibility with python3k. | Yuri Takhteyev | 2008-12-04 | 1 | -1/+1 |
| | | |||||
| * | Attempting a refactoring, breaking markdown into multiple files. | Yuri Takhteyev | 2008-11-17 | 1 | -0/+367 |
