Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Preserve whitespace in empty lines | Waylan Limberg | 2013-02-07 | 3 | -1/+68 |
| | | | | | | | | Partial fix for #183. By preserving tabs at the start of empty lines in code blocks, the parser will retain those empty lines. Still does not work consistantly if the tab is missing!? Not sure why. Also added tests. | ||||
* | Preserve empty lines in code blocks | Waylan Limberg | 2013-02-06 | 2 | -7/+8 |
| | | | | | | Partial fix for #183. Some lines are still being lost. When the processors are run, one line is lost. When their calling code is comments out (completely skiped) a line is still lost if more than 3 exist in a row. Also need to add some tests for this. | ||||
* | nl2br and attr_list compatability. | Waylan Limberg | 2013-02-06 | 5 | -3/+9 |
| | | | | | | Fixes #177. When using both extensions, breaks (`<br>`) must have a linebreak (`\n`) after them before attr_list is run. This patch reorders the treeprocessors so that happens ('attr_list' runs after 'prettify' not before). Also had to alter headerid extension so it runs after 'prettify' or it would run before 'attr_list' if loaded before 'attr_list' by user. | ||||
* | Account for a paragraph that starts with a colon when processing def_lists | Waylan Limberg | 2013-02-06 | 3 | -4/+50 |
| | | | | Fixes #171. While that report provided an example of an unordered list item that started with a colon, any block that starts with a colon and has no siblings before it (paragraph as begining if document, list item, etc) all exhibit this same behavior. Following PHP Markdown Extra's lead, these are not definition items as they have no term before them. | ||||
* | Whitelisted known safe url schemes in safe_mode. A better fix for #185. | Waylan Limberg | 2013-02-06 | 1 | -6/+7 |
| | |||||
* | Merge pull request #185 from phihag/safemode-no-javascript-urls | Waylan Limberg | 2013-02-05 | 3 | -0/+8 |
|\ | | | | | Prevent javascript:// URLs | ||||
| * | Forbid javascript:// URLs in safe mode | Philipp Hagemeister | 2013-02-05 | 3 | -0/+8 |
|/ | |||||
* | Merge pull request #182 from abackstrom/img-ref-attributes | Waylan Limberg | 2013-01-28 | 3 | -0/+9 |
|\ | | | | | Enable attributes inside image references | ||||
| * | Enable attributes inside image references | Adam Backstrom | 2013-01-27 | 3 | -0/+9 |
|/ | |||||
* | Merge pull request #178 from mgorny/master | Waylan Limberg | 2013-01-13 | 1 | -1/+12 |
|\ | | | | | Support disabling documentation build in 'build' command | ||||
| * | Support disabling documentation build via --no-build-docs. | Michał Górny | 2013-01-13 | 1 | -1/+12 |
|/ | |||||
* | No longer support python 2.5 | Waylan Limberg | 2013-01-10 | 1 | -7/+1 |
| | |||||
* | Github no longer offers Downloads - no need to upload any. | Waylan Limberg | 2013-01-10 | 1 | -62/+0 |
| | |||||
* | Improved the goals in docs. | Waylan Limberg | 2013-01-10 | 1 | -3/+5 |
| | |||||
* | Added a "goals" section to the docs. | Waylan Limberg | 2013-01-10 | 1 | -2/+15 |
| | | | | | Now, when we receive feature requests that don't fit within the scope of the Python-Markdown project, we have something to point to in response. | ||||
* | Added a list of known differences to the docs. | Waylan Limberg | 2013-01-10 | 1 | -8/+44 |
| | | | | | | | | | | | Rather than constantly responding to new bug reports for known differences between Python-Markdown and other implementations, I've added this section to the docs to definitively state our position and point people to workarounds. I'm sure some people will still file reports, but at least I have something to point them to. If there are any I missed, I can always add them latter when they come up. | ||||
* | Better fix for #164. Works in Python 2 & 3. | Waylan Limberg | 2012-12-18 | 1 | -4/+4 |
| | |||||
* | Fixed #169. The new version stuff now works in python 2 & 3. | Waylan Limberg | 2012-12-18 | 1 | -3/+12 |
| | |||||
* | Testing framework now runs on Python 2 & 3 unmodified. | Waylan Limberg | 2012-12-14 | 6 | -36/+46 |
| | |||||
* | Normalize line endings in tests as git may alter them on Windows. | Waylan Limberg | 2012-12-14 | 1 | -2/+3 |
| | | | | | Without this, all SyntaxTests would fail from a git checkout on Windows. On other systems, it should have no effect. | ||||
* | Fixed #165. Switched the order of treeprocessors when attr_list and headerid ↵ | Waylan Limberg | 2012-12-13 | 3 | -10/+20 |
| | | | | extensions are used togeather. While this means headerid may alter IDs defined in attr_lists for uniqueness, automaticaly generated ids will not contain unparsed attr_lists. This is the lesser of two evils - and actually generates a more valid output (all IDs will be unique) | ||||
* | Fixed #164. attr_list extension attribute names are now sanitized and won't ↵ | Waylan Limberg | 2012-12-13 | 3 | -3/+16 |
| | | | | crash the serealizer. | ||||
* | Upped version to 2.3.dev. | Waylan Limberg | 2012-12-05 | 4 | -6/+46 |
| | | | | | Also refactored the version info to force PEP 386 compliance and to avoid the need to change the version in both the source and setup.py | ||||
* | Fixed #160. No `markdown=1` support in safe_mode. | Waylan Limberg | 2012-12-05 | 1 | -2/+3 |
| | | | | | | | When in safe_mode, there is no raw html to contain `markdown=1` for processing, so there is no need to turn on that feature. The symptom reported in issue #160 appears to be a side effect of commit a2377e1129331430998de821ed3abf38247edca1. | ||||
* | Merge pull request #159 from mitya57/master | Waylan Limberg | 2012-11-09 | 10 | -12/+4 |
|\ | | | | | Fixed pyflakes warnings | ||||
| * | Fix all pyflakes unused-import/unused-variable warnings | Dmitry Shachnev | 2012-11-09 | 9 | -11/+3 |
| | | |||||
| * | docs/change_log.txt: add a missing `[` | Dmitry Shachnev | 2012-11-05 | 1 | -1/+1 |
| | | |||||
* | | Updated fix for #158 for Python <2.7 | Waylan Limberg | 2012-11-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | | Apparently, the `errors` keyword to encode was added in Python 2.7. In previous versions, it was just a positional argument. This should now work in all support versions. Thanks to @Gamma3000 for assistance in working through this issue. | ||||
* | | Fixed #158. Now properly encoding output to stdout. | Waylan Limberg | 2012-11-07 | 1 | -8/+7 |
|/ | | | | | | | | This is another try at this problem. The trick is geting code that works with both Python 2 and Python 3. I think this does it. The only improvment I can see now is to catch any errors and customize the error message to sugg that the user set the environment variable PYTHONIOENCODING to the desired encoding before calling the commandline script. | ||||
* | Merge branch 'master' of https://github.com/waylan/Python-Markdown2.2.1.final | Waylan Limberg | 2012-11-04 | 6 | -32/+90 |
|\ | |||||
| * | Fixed minor typo in attr_list docs. | Waylan Limberg | 2012-11-04 | 1 | -1/+1 |
| | | | | | | Thanks @mitya57. | ||||
| * | Merge pull request #157 from mitya57/master | Waylan Limberg | 2012-11-03 | 3 | -27/+68 |
| |\ | | | | | | | Improve docs/extensions/index.txt so that the name for each extension is properly identified. | ||||
| | * | docs/basic.css: Improve CSS a bit | Dmitry Shachnev | 2012-11-03 | 1 | -8/+15 |
| | | | |||||
| | * | docs/extensions/index.txt: make it clear what name to pass for extensions | Dmitry Shachnev | 2012-11-03 | 1 | -19/+53 |
| | | | |||||
| | * | Remove exec bit from extensions/fenced_code.py | Dmitry Shachnev | 2012-11-03 | 1 | -0/+0 |
| |/ | |||||
| * | Fix silly typo in previous commit. | Waylan Limberg | 2012-11-01 | 1 | -1/+1 |
| | | |||||
| * | A better fix for #155. Unescaping inline placholders now returns the text ↵ | Waylan Limberg | 2012-11-01 | 1 | -6/+19 |
| | | | | | | | | only of an Element - rather than the html which just gets html escaped in the output anyway. | ||||
| * | Fixed #154. Inline placeholders in img alt text are now unescaped. | Waylan Limberg | 2012-11-01 | 1 | -1/+1 |
| | | |||||
| * | Fixed #155. Early unescaping of inline placeholders now works when the ↵ | Waylan Limberg | 2012-11-01 | 1 | -1/+5 |
| | | | | | | | | placeholder is an Elementtree Element. | ||||
| * | Merge pull request #156 from mitya57/master | Waylan Limberg | 2012-10-26 | 1 | -1/+1 |
| |\ | | | | | | | Fix the link in docs' bottom panel | ||||
| | * | Apply a fix from commit 3e6e70eb48 to the bottom panel as well | Dmitry Shachnev | 2012-10-26 | 1 | -1/+1 |
| |/ | |||||
* | | Upped version to 2.2.1. | Waylan Limberg | 2012-11-04 | 6 | -9/+24 |
| | | |||||
* | | Fixed CodeHilite test when pygments is not installed. | Waylan Limberg | 2012-11-04 | 1 | -1/+1 |
|/ | |||||
* | Fixed #153. Two spaces at end of paragraph is not a linebreak. | Waylan Limberg | 2012-10-21 | 4 | -14/+6 |
| | |||||
* | Fixed #152. Spaces in links are now escaped. | Waylan Limberg | 2012-10-21 | 3 | -3/+4 |
| | |||||
* | Fixed #151. Raw html matching is now case-insensitive. | Waylan Limberg | 2012-10-21 | 3 | -2/+13 |
| | |||||
* | Merge pull request #142 from mitya57/master | Waylan Limberg | 2012-09-09 | 1 | -0/+21 |
|\ | | | | | Add `long_description` attribute to `data` in `setup.py` | ||||
| * | Remove unneeded link | Dmitry Shachnev | 2012-09-09 | 1 | -1/+0 |
| | | |||||
| * | setup.py: Add `long_description` attribute to `data` | Dmitry Shachnev | 2012-09-09 | 1 | -0/+22 |
|/ | | | | so that there's no text breakage on PyPI page | ||||
* | Fixed #141. Minor typo on wikilinks docs. | Waylan Limberg | 2012-09-07 | 1 | -1/+1 |
| | | | Thanks for the report. |