aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Improved `Markdown.set_output_format()`Waylan Limberg2012-08-091-4/+10
|/ | | | | | | | | | Specificaly, `self.output_format` is defined and contains a string of the output format used on the instance. This is more useful that an instance of the searializer when determining alternate behavior elsewhere in the parser. For example, see Issue #129. Also cleaned up the error when an invalid format is provided. We now re-raise the original error (with a custom message) rather than raising a new error.
* Fixed #114. Converted doctests to unittests. While I left the doctests there ↵Waylan Limberg2012-07-262-1/+275
| | | | for documentation purposes, they are no longer being run. Perhaps I'll delete them later and add links to the online docs or something.
* Merge pull request #127 from svetlyak40wt/fix-piped-stdoutWaylan Limberg2012-07-261-1/+2
|\ | | | | Fixed UnicodeEncodeError when output from markdown_py is piped
| * Fixed UnicodeEncodeError when output from markdown_py is piped into another ↵Alexander Artemenko2012-07-261-1/+2
|/ | | | | | | program. In this case text should be encoded into the output encoding explicitly, because sys.stdout.encoding is None, when piping data.
* Merge pull request #124 from papaeye/lexer+lexerWaylan Limberg2012-07-243-1/+21
|\ | | | | Added support for <foo>+<bar> lexers of Pygments
| * Added support for <foo>+<bar> lexers of Pygmentspapaeye2012-07-213-1/+21
|/
* Merge pull request #122 from Scorpil/masterWaylan Limberg2012-07-191-1/+4
|\ | | | | More expressive ValueError description
| * Merge branch 'master' of github.com:Scorpil/Python-MarkdownScorpil2012-07-201-2/+1
| |\ | | | | | | | | | | | | Conflicts: markdown/odict.py
| | * Added more expressive description of an error.Scorpil2012-07-201-1/+5
| | |
| * | Added more expressive description of an error.Scorpil2012-07-201-1/+5
| |/
* | Merge pull request #121 from Scorpil/patch-1Waylan Limberg2012-07-181-1/+1
|\ \ | | | | | | Fixed typo in docs: 'md.treepreprocessor' for 'md.treeprocessor'.
| * | Fixed typo in docs: 'md.treepreprocessor' for 'md.treeprocessor'. Andrew2012-07-191-1/+1
| |/
* | Merge pull request #120 from apelisse/masterWaylan Limberg2012-07-181-1/+1
|\ \ | |/ |/| Fixes example after moving AtomicString to util
| * Fixes example after moving AtomicString to utilAntoine Pelisse2012-07-181-1/+1
| |
* | Merge pull request #118 from ThiefMaster/patch-1Waylan Limberg2012-07-161-1/+1
|\ \ | |/ |/| Stack Overflow does NOT convert single linebreaks in markdown to `<br>` ...
| * Stack Overflow does NOT convert single linebreaks in markdown to `<br>` tags.Adrian2012-07-161-1/+1
|/
* Fixed #115. Make sure all file objects are closed.Waylan Limberg2012-07-122-4/+10
|
* Fixed 113. We still support Python 2.5 until Markdown version 2.3.Waylan Limberg2012-07-121-1/+1
|
* Fixed #112 and cleaned up error reporting when loading extensions.Waylan Limberg2012-07-122-12/+16
|
* Upped version to 2.2.0-Final.2.2.0.finalWaylan Limberg2012-07-051-1/+1
|
* Removed beta warning from 2.2 release notes.Waylan Limberg2012-07-051-3/+1
|
* Added .md to README.md etc in MANIFEST.in.Waylan Limberg2012-07-051-3/+3
|
* Fixed #106. Replaced all references to freewisdom.org (except for Yuri's ↵Waylan Limberg2012-06-2816-43/+42
| | | | homepage).
* Fixed #110. Documented the 'fenced_code' extension's support for the ↵Waylan Limberg2012-06-281-0/+13
| | | | 'codehilite' extension.
* Fixed #109. The attr_list extension can now be loaded either before or after ↵Waylan Limberg2012-06-281-2/+6
| | | | the headerid extension.
* Fixed #105. Non-existant extensions fail with a warning only.Waylan Limberg2012-06-281-1/+1
|
* Fix #99. Account for empty header IDs when ensuring uniqueness.Waylan Limberg2012-05-241-1/+1
|
* Fixed Issue #98. The language designator must start at the beginging of the ↵Waylan Limberg2012-05-181-1/+1
| | | | first line of a code block for codehilite to recognize it.
* Merge branch 'master' of github.com:waylan/Python-MarkdownWaylan Limberg2012-05-041-4/+9
|\
| * Updated docs to reflect fix in #82.Waylan Limberg2012-05-031-4/+9
| |
* | Updated version to 2.2.0.alpha.2.2.0.alphaWaylan Limberg2012-05-042-28/+28
| |
* | Added release notes for v2.2.0.Waylan Limberg2012-05-043-17/+87
|/
* Fixed #82. 'enable_attributes' honors 'safe_mode'.Waylan Limberg2012-05-031-0/+4
| | | | | | | Note that you can still explicitly set 'enable_attributes' and that value will be honored regardless of 'safe_mode'. However if 'safe_mode' is on and 'enable_attributes' is not explicitly set, then 'enable_attributes' defaults to False.
* Merge pull request #95 from cataliniacob/masterWaylan Limberg2012-04-174-6/+14
|\ | | | | Attempted fix for issue 87
| * Add test for 5236a9838c580a17c3299efb97d9f41ce2a1efabCatalin Iacob2012-04-173-0/+7
| |
| * Fixed #87Catalin Iacob2012-04-161-6/+7
|/ | | | Elements should be inserted in the tree regardless of enable_attributes
* Merge pull request #94 from fin/masterWaylan Limberg2012-04-112-0/+2
|\ | | | | added a test for the previous pull request
| * tests for 9852c2263ef7775d2a508a9c1721148cbf3ae258fin2012-04-112-0/+2
| |
* | Merge pull request #93 from fin/masterWaylan Limberg2012-04-111-1/+1
|\| | | | | Remove `<del>` and `<ins>` from block-level elements list
| * Remove `<ins>` and `<del>` from html block element listfin2012-04-111-1/+1
|/ | | | They are span elements. `<del>` is explicitly mentioned as such in the [markdown syntax document](http://daringfireball.net/projects/markdown/syntax)
* Allow blockprocessor.run to return True or False.Waylan Limberg2012-03-211-4/+5
| | | | | | | | | This allows the run method to determine if a block is or is not a match in the midst of parsing outside of the test method. The goal is to eliminate the often redundant test method in the future. In the interim, it remains and if the run method returns None, the existing behavior is maintained. Returning None may generate a DepreciationWarning later. Note that test must still return True to even get to the run method.
* Fixed #85. Odict now handles link errors correctly.Waylan Limberg2012-03-192-3/+11
| | | | Also added a test. Thanks for the report.
* Merge pull request #86 from SimonSapin/masterWaylan Limberg2012-03-182-3/+3
|\ | | | | Typo fix in doc: s/extension-configs/extension_configs/
| * Typo fix in doc: s/extension-configs/extension_configs/Simon Sapin2012-03-192-3/+3
|/
* Point to docs hosted with PyPI rather than Yuri's missing site.Waylan Limberg2012-03-074-9/+10
|
* Added siteindex to docs.Waylan Limberg2012-03-075-12/+85
|
* Add release notes, authors and change_log to docs.Waylan Limberg2012-03-0710-67/+124
|
* Shorten INSTALL.md to just point to the docs.Waylan Limberg2012-03-071-68/+1
|
* Rename docs/*.md => docs/*.txtWaylan Limberg2012-03-0730-1/+1
| | | | | | | | | The documentation uses features of Python-Markdown that are not supported on GitHub and it's better to get a source view of the docs anyway. For example, that way comments and bug reports can reference a specific line of a file. Of course, it makes sense for Github to render the README, so that is left with the `.md` file extension.
* Fixed up some formating errors in docs and added/fixed more internal links.Waylan Limberg2012-03-0710-35/+36
|