aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/inlinepatterns.py
Commit message (Expand)AuthorAgeFilesLines
* Make sure regex patterns are raw strings (#614)Isaac Muse2018-01-021-1/+1
* Feature ancestry (#598)Isaac Muse2017-11-231-0/+2
* Fix new flake8 722 errorfacelessuser2017-10-261-1/+1
* fix DeprecationWarning: invalid escape sequenced9pouces2017-07-251-3/+3
* Fix typo s/Goggle/Google/Tim Chase2017-06-031-1/+1
* Better inline code escaping (#533)Isaac Muse2017-01-201-5/+9
* Add blank lines after toplevel function definitions.Dmitry Shachnev2016-11-181-0/+1
* Fix image titles not following specfacelessuser2016-07-261-1/+1
* Ensure InlinePatterns don't drop newlines.Waylan Limberg2015-11-061-1/+1
* No binary operators at begining of line.Waylan Limberg2015-02-181-6/+6
* Flake8 cleanup (mostly whitespace).Waylan Limberg2014-11-201-49/+95
* Issue #365 Bold/Italic nesting fixfacelessuser2014-11-171-2/+2
* Better nested STRONG EM support.Waylan Limberg2014-09-261-2/+6
* Fix the lost tail issue in inlineprocessors.facelessuser2014-09-261-8/+8
* Removed some old codeWaylan Limberg2014-08-251-4/+1
* Mark a few more lines with 'no cover' - missed them the first time through. T...Waylan Limberg2014-07-111-4/+4
* Marked a bunch of lines as 'no cover'. Coverage at 91%Waylan Limberg2014-07-111-6/+6
* No longer percent encode spaces in urls.Waylan Limberg2014-01-091-1/+0
* Only escape ESCAPED_CHARS.Waylan Limberg2014-01-091-1/+1
* Fixed parsing of brackets within inline image titles.Darell Tan2014-01-051-1/+1
* Future imports go after the docstringsAdam Dinwoodie2013-03-181-1/+1
* Now using universal code for Python 2 & 3.Waylan Limberg2013-02-271-14/+16
* Whitelisted known safe url schemes in safe_mode. A better fix for #185.Waylan Limberg2013-02-061-6/+7
* Forbid javascript:// URLs in safe modePhilipp Hagemeister2013-02-051-0/+3
* Enable attributes inside image referencesAdam Backstrom2013-01-271-0/+4
* Fix all pyflakes unused-import/unused-variable warningsDmitry Shachnev2012-11-091-1/+0
* Fix silly typo in previous commit.Waylan Limberg2012-11-011-1/+1
* A better fix for #155. Unescaping inline placholders now returns the text onl...Waylan Limberg2012-11-011-6/+19
* Fixed #154. Inline placeholders in img alt text are now unescaped.Waylan Limberg2012-11-011-1/+1
* Fixed #155. Early unescaping of inline placeholders now works when the placeh...Waylan Limberg2012-11-011-1/+5
* Fixed #153. Two spaces at end of paragraph is not a linebreak.Waylan Limberg2012-10-211-2/+0
* Fixed #152. Spaces in links are now escaped.Waylan Limberg2012-10-211-0/+1
* Misc typos.chri2012-08-281-1/+1
* Always use Markdown's serializers.Waylan Limberg2012-01-201-1/+1
* Inline html is now escaped by the searializer.Waylan Limberg2012-01-191-1/+2
* Partial fix for issue introduced in fix for #59Waylan Limberg2012-01-191-2/+7
* Fixed #59. Raw HTML parsing is no longer slow.Waylan Limberg2012-01-181-2/+13
* Fix logic bug introduced in 35930e0928e19...Mike Dirolf2012-01-141-1/+1
* Fixed #69. url_sanitize no longer crashes on unparsable urls.Waylan Limberg2012-01-151-9/+18
* Allow UPPERCASE urls in auto links.Waylan Limberg2011-10-061-1/+1
* Fixed #39. Refactored escaping so that it only escapes a predifined set of ch...Waylan Limberg2011-08-171-3/+13
* Fixed #23. Turns out markdown.pl only allows up to one space between brackets...Waylan Limberg2011-06-161-2/+2
* Fixed #19. Improved Start Emphasis regex.Waylan Limberg2011-06-071-1/+1
* Minor adjustment to previous commit. Reference links don't need unescaped as ...Waylan Limberg2011-06-021-4/+4
* Partial fix of issue #14. hrefs (and titles) are now unescaped, but it uppear...Waylan Limberg2011-06-021-10/+23
* Fixed a few inline issues found from running the currenlty skipped tests from...Waylan Limberg2010-11-041-7/+9
* Added short reference links. No more hanging empty brackets on reference link...Waylan Limberg2010-10-111-12/+15
* Fixed Ticket 79. Linebreaks in reference link identifiers are now ignored. Th...Waylan Limberg2010-10-111-0/+5
* Added the re.UNICODE flag to inlinepatterns. Now all inlinepattern regex will...Waylan Limberg2010-09-201-1/+2
* Fixed Ticket 66. We have dropped official support for Python 3.0 and now only...Waylan Limberg2010-07-141-4/+7