Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix table alignment when seperator contains spaces (#489) | eph | 2016-08-15 | 2 | -4/+5 |
| | | | | | | | | | | * Fix table alignment when seperator contains spaces eg. seperator like "------ | :----- | :----: | -----: | ------" * Update tests for table * Delete the newline at the end of tables.html | ||||
* | Merge pull request #485 from facelessuser/master | Waylan Limberg | 2016-07-26 | 3 | -3/+9 |
|\ | | | | | Fix image titles not following spec | ||||
| * | Fix image titles not following spec | facelessuser | 2016-07-26 | 3 | -3/+9 |
|/ | | | | | Don’t allow spaces in image links. This was also causing an issue where any text following a space was treated as a title. Ref #484. | ||||
* | Merge pull request #483 from mitya57/master | Waylan Limberg | 2016-06-13 | 3 | -3/+6 |
|\ | | | | | Fix another issue with attribute lists (with multiple ‘=’ signs) | ||||
| * | Fix another issue with attribute lists (with multiple ‘=’ signs) | Dmitry Shachnev | 2016-06-13 | 3 | -3/+6 |
|/ | |||||
* | Attribute lists are not permitted to contain newlines. Fixes #482. | Waylan Limberg | 2016-06-12 | 3 | -2/+6 |
| | |||||
* | Additional improvements to Codehilite docs. Addesses concerns raised in #480. | Waylan Limberg | 2016-06-06 | 1 | -18/+45 |
| | |||||
* | Merge pull request #480 from krother/patch-1 | Waylan Limberg | 2016-06-06 | 1 | -8/+15 |
|\ | | | | | edited setup docs for CodeHilite with Pygments | ||||
| * | added instructions for CodeHilite with Pygments | Kristian Rother | 2016-06-06 | 1 | -8/+15 |
|/ | | | Improved the setup documentation when rendering Python code with Pygments and CodeHilite. Added a link to the Pygments CSS files and emphasized that not installing pygments does not cause an error message. | ||||
* | Merge pull request #478 from adamchainz/readthedocs.io | Waylan Limberg | 2016-05-29 | 3 | -4/+4 |
|\ | | | | | Convert readthedocs link for their .org -> .io migration for hosted projects | ||||
| * | Convert readthedocs link for their .org -> .io migration for hosted projects | Adam Chainz | 2016-05-29 | 3 | -4/+4 |
|/ | | | | | | | | As per [their blog post of the 27th April](https://blog.readthedocs.com/securing-subdomains/) ‘Securing subdomains’: > Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard. Test Plan: Manually visited all the links I’ve modified. | ||||
* | Added version 2.6.6 to change log. | Waylan Limberg | 2016-05-25 | 1 | -0/+2 |
| | | | Fixes #475. | ||||
* | Merge pull request #476 from adamchainz/readme_link_changelog | Waylan Limberg | 2016-05-08 | 1 | -0/+2 |
|\ | | | | | README - add link to changelog | ||||
| * | README - add link to changelog | Adam Chainz | 2016-05-08 | 1 | -0/+2 |
|/ | | | | Fixes #474. Makes it a bit easier to find the changelog. | ||||
* | Merge branch 'master' of https://github.com/waylan/Python-Markdown | Waylan Limberg | 2016-04-11 | 3 | -2/+15 |
|\ | |||||
| * | Merge pull request #469 from martinmo/fenced-code-no-pygments | Waylan Limberg | 2016-04-11 | 2 | -0/+13 |
| |\ | | | | | | | Support CodeHilite option use_pygments in fenced_code | ||||
| | * | Support CodeHilite option use_pygments in fenced_code | Martin Morgenstern | 2016-04-11 | 1 | -0/+1 |
| | | | |||||
| | * | Test if fenced_code honors CodeHilite option use_pygments | Martin Morgenstern | 2016-04-11 | 1 | -0/+12 |
| |/ | |||||
| * | Merge pull request #466 from sblondon/master | Waylan Limberg | 2016-03-30 | 1 | -2/+2 |
| |\ | | | | | | | Fix lazy ordered list example in documentation | ||||
| | * | Fix lazy ordered list example in documentation | sblondon | 2016-03-30 | 1 | -2/+2 |
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The documentation is not accurate when lazy_ol=False parameter is called. The example shows the 'start' attribute to the first <li> tag. However, the attribute is in the <ol> tag: >>> import markdown >>> s = """ ... 4. Apples ... 5. Oranges ... 6. Pears""" >>> markdown.markdown(s, lazy_ol=False) u'<ol start="4">\n<li>Apples</li>\n<li>Oranges</li>\n<li>Pears</li>\n</ol>' The behaviour of the library is the correct one (https://developer.mozilla.org/fr/docs/Web/HTML/Element/ol), so the documentation need to be fixed, not the library. | ||||
* / | Remove unnessecary if statement. | Waylan Limberg | 2016-04-11 | 1 | -5/+1 |
|/ | | | | | | The statement will never evaluate False, so its not needed. Also, Unicode is not valid for PY3, so its better to not include it. Fixes #470. | ||||
* | Upped version to 2.6.6.2.6.6-final | Waylan Limberg | 2016-03-20 | 1 | -1/+1 |
| | |||||
* | Merge pull request #462 from waylan/toc_bug | Waylan Limberg | 2016-03-17 | 2 | -1/+74 |
|\ | | | | | Toc bug | ||||
| * | toc: Remove children from header element after iterating | Dmitry Shachnev | 2016-03-17 | 1 | -1/+2 |
| | | | | | | | | Removing items while iterating can result in wrong behavior. Refs #461. | ||||
| * | Add single inline code toc tests | Stephan Groß | 2016-03-17 | 1 | -4/+33 |
| | | |||||
| * | Add toc permalink tests | Stephan Groß | 2016-03-17 | 1 | -0/+28 |
| | | |||||
| * | Add failing toc test | Stephan Groß | 2016-03-17 | 1 | -0/+15 |
|/ | |||||
* | Make TestCodeHilite work with Pygments ≥ 2.1.1 | Dmitry Shachnev | 2016-03-03 | 1 | -3/+3 |
| | | | | | | | | New versions of Pygments insert <span></span> blocks in the beginning of the generated output sometimes [1], so we need to remove those blocks before doing the actual checking. [1]: https://bitbucket.org/birkenfeld/pygments-main/commits/164574c13533 | ||||
* | Fix for exceptions handling in HtmlOutput’s formatErr method | Dmitry Shachnev | 2016-03-03 | 1 | -0/+2 |
| | | | | | | | Now it should no longer print internal errors instead of intended ones on Python 3. Thanks to Maurice van der Pot for finding this fix. | ||||
* | Added a few empty lines in the test to satisfy flake8 | Maurice van der Pot | 2016-02-27 | 1 | -0/+3 |
| | |||||
* | Added assertStartsWith to tests to give better failure messages | Maurice van der Pot | 2016-02-27 | 1 | -27/+37 |
| | | | | | The failure printed when self.assertTrue was used with str.startswith did not show the string that was being searched. | ||||
* | Improve RawHtmlProcessor to have linear iso quadratic performance | Maurice van der Pot | 2016-02-26 | 1 | -7/+10 |
| | |||||
* | Enabled pygments based tests. | Waylan Limberg | 2016-01-28 | 2 | -36/+14 |
| | | | | | | Added pygments to test-requirements and updated codehiliting tests to only test partial output as output differs depending on Pygments version. Fixes #453 | ||||
* | Remove Py32 tests from travis, not tox. | Waylan Limberg | 2016-01-28 | 2 | -2/+1 |
| | | | | That way py32 tests can still be run locally. Just not on the CI server. | ||||
* | No longer test Python 3.2 | Waylan Limberg | 2016-01-28 | 1 | -1/+1 |
| | | | Pip version 8 dropped support for Python 3.2 and by testing it we are getting errors (related to pip, not Markdown) on that version only. Removing the Py32 tests for now so our automated tools continue to work. | ||||
* | Remove downloadcache tox config value. | Waylan Limberg | 2016-01-28 | 1 | -2/+1 |
| | | | The `downloadcache` config value is deprecated by tox and the related `--download-cache` flag is removed on pip version 8.0 (deprecated in 6.0). With this change tests should run with the lasted versions of all tools (they do not without it). | ||||
* | Added Issue Stats badge | Waylan Limberg | 2015-12-25 | 1 | -0/+1 |
| | |||||
* | Updated change_log | Waylan Limberg | 2015-11-24 | 1 | -0/+2 |
| | |||||
* | Upped version to 2.6.5.2.6.5-final | Waylan Limberg | 2015-11-24 | 1 | -1/+1 |
| | |||||
* | Switch Travis to new infrastructure for faster build. | Waylan Limberg | 2015-11-17 | 1 | -4/+6 |
| | |||||
* | Merge pull request #441 from mitya57/master | Waylan Limberg | 2015-11-07 | 3 | -2/+23 |
|\ | | | | | Fix #440 (Tables extension drops characters after code spans) | ||||
| * | Fix handling of characters after backtick in tables. | Dmitry Shachnev | 2015-11-07 | 1 | -1/+1 |
| | | | | | | | | Fixes #440. Thanks @jandecaluwe for the bug report. | ||||
| * | Add a failing testcase for issue #440. | Dmitry Shachnev | 2015-11-07 | 2 | -1/+22 |
|/ | |||||
* | Upped to version 2.6.4.2.6.4-final | Waylan Limberg | 2015-11-06 | 2 | -1/+3 |
| | |||||
* | Ensure InlinePatterns don't drop newlines. | Waylan Limberg | 2015-11-06 | 3 | -2/+7 |
| | | | | | | Drppoed the non-greedy quantifier from the end of the inlinePatterns as it served no useful purpose and was actually (in very rare edge cases) causing newlines to be dropped. FIxes #439. Thanks to @munificent for the report. | ||||
* | Upped to version 2.6.3.2.6.3-final | Waylan Limberg | 2015-10-26 | 2 | -1/+3 |
| | |||||
* | Merge pull request #437 from MustafaHaddara/table-inline-code | Waylan Limberg | 2015-10-26 | 4 | -4/+134 |
|\ | | | | | Table inline code | ||||
| * | Fixed handling of table cell split | Mustafa Haddara | 2015-10-24 | 4 | -4/+134 |
| | | |||||
* | | Coverage 4.0 dropped support for Python 3.2. Until we drop Python 3.2, we ↵ | Waylan Limberg | 2015-10-26 | 1 | -1/+1 |
|/ | | | | must stick with coverage<4.0. | ||||
* | Merge pull request #432 from facelessuser/master | Waylan Limberg | 2015-09-05 | 3 | -4/+16 |
|\ | | | | | Fix infinite loop #430 |