Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added 2.5.2 to changelog. | Waylan Limberg | 2014-11-20 | 1 | -0/+2 |
| | |||||
* | Updated nl2br example in docs. | Waylan Limberg | 2014-10-28 | 1 | -1/+1 |
| | | | Fixes #359. Thanks for the report @gremmie. | ||||
* | Upped version to 2.5.12.5.1-final | Waylan Limberg | 2014-09-26 | 2 | -6/+5 |
| | | | | Also removed an inacurate statement in the 2.5 release notes. | ||||
* | Add 2.5 release date, and fix a typo. | Dmitry Shachnev | 2014-09-15 | 2 | -2/+2 |
| | |||||
* | Mark "Safe Mode" as pending deprecation. | Waylan Limberg | 2014-09-01 | 3 | -25/+72 |
| | | | | | Both `safe_mode` and `html_replacement_test` keywords are pending deprecation, as are positional args. Closes #337. | ||||
* | Some docs cleanup. | Waylan Limberg | 2014-08-29 | 7 | -60/+53 |
| | |||||
* | Updated extension API docs for recent changes. | Waylan Limberg | 2014-08-29 | 2 | -46/+70 |
| | |||||
* | Mark special treatment of extension names as PendingDeprecation | Waylan Limberg | 2014-08-29 | 3 | -27/+55 |
| | | | | | | | | | | | | | | | | | The builtin extensions will no longer get special treatment and have the path ("markdown.extensions.") appended . The same applies for "mdx_" extensions. All names extension must provide the full path. Fixes #336. Also deprecating support for passing in extension config settings as part of the string name. The extension_configs keyword should be used instead. Fixes #335. Also raising PendingDeprecationWarnings for positional args or the "config" keyword on the Extension Class. Pass each setting as a seperate keyword instead. Docs and tests are updated. Still need to update extension API docs. | ||||
* | Code exampeles in extension docs now show best practices. | Waylan Limberg | 2014-08-29 | 2 | -13/+14 |
| | | | | | This is in anticipation of #335. The reference and extension api docs still need to be updated, but that will happen with change in the code. | ||||
* | Docs now use dot notation for all extensions. | Waylan Limberg | 2014-08-29 | 18 | -59/+52 |
| | | | | | | Except were "short names" are explained in the docs, all references to the buitlin extensions now use `markdown.extensions.*` in anticipation of #336. | ||||
* | Various tweaks to release notes. | Waylan Limberg | 2014-08-27 | 1 | -34/+46 |
| | |||||
* | Allow named extensions to specify the Class Name | Waylan Limberg | 2014-08-27 | 1 | -0/+30 |
| | | | | | | | | | | | | | | | | | | If you were to import the class like this: from path.to.module import SomeExtensionClass Then the named extension would be the string: "path.to.module:SomeExtensionClass" This should simplify loading extensions from the command line or template filters -- expecially when multiple extensions are defined in a single python module. The docs still need updating. I'm waiting to update the docs after implementing #335 and #336 as that will require a major refactor of that section of the docs anyway. | ||||
* | Refactored extension importing. | Waylan Limberg | 2014-08-27 | 1 | -1/+4 |
| | | | | | | | | | | | | | We now use importlib which means we no longer support Python 2.6. Also, this refactor properly imports third party extensions which reside at the root of PYTHONPATH. Previously, either `markdown.extensions.` or `mdx_` would be appended to any extension name that did not contain a dot, which required third party extensions to either be in submodules or use the old `mdx_` naming convention. This commit is also in preperation for #336. It will now be much easier to deprecate (and later remove) support for the old ways of handling extension names. | ||||
* | Note deprecation of `force_linenums` keyword in release notes. | Waylan Limberg | 2014-08-22 | 1 | -3/+9 |
| | |||||
* | Added `--extension_configs` option to the CLI. | Waylan Limberg | 2014-08-22 | 2 | -16/+73 |
| | | | | | | | | | | The `--extension_configs` option must point to a YAML or JSON file. The contents of the file must parse to a Python Dict which will be passed to the `extension_configs` keyword of the `markdown.Markdown` class. Also added tests for all of the CLI option parsing options and updated documentation. | ||||
* | Update docs for tests refactor. INI => YAML. Relates to #333. | Waylan Limberg | 2014-08-21 | 2 | -16/+17 |
| | |||||
* | Upped version to 2.5-dev and started release notes. | Waylan Limberg | 2014-08-20 | 4 | -3/+50 |
| | |||||
* | Update lib reference docs to reflect that extension_configs accepts dicts. ↵ | Waylan Limberg | 2014-08-20 | 1 | -10/+14 |
| | | | | Related to #325 | ||||
* | Renamed 'smart_substitutions' option to 'substitutions'. Fixed a typo. | Martin Altmayer | 2014-08-15 | 1 | -3/+3 |
| | |||||
* | Replaced smart_lsquo etc. by a single option smart_substitutions which ↵ | Martin Altmayer | 2014-08-11 | 1 | -9/+17 |
| | | | | allows to overwrite all substitution strings. Fixed line length in docs. | ||||
* | Added options to the Smarty extension that configure the text that is used ↵ | Martin Altmayer | 2014-08-09 | 1 | -0/+13 |
| | | | | to replace quotes. This makes it possible to use the correct quotes in languages other than English. | ||||
* | Updated extension API docs for Extension.__init__ refactor | Waylan Limberg | 2014-08-01 | 1 | -9/+18 |
| | | | Relates to #325. | ||||
* | Update reference docs for recent Extension.__init__ refactor. | Waylan Limberg | 2014-08-01 | 1 | -3/+13 |
| | | | Noted that using keywords it the prefered method of passing config options to extensions. Also updated the example sto demonstrate the new prefered way as discussed in #325. | ||||
* | smarty: add support for angled quotes | Dmitry Shachnev | 2014-06-19 | 1 | -11/+13 |
| | | | | See <http://en.wikipedia.org/wiki/Guillemet>. | ||||
* | Emphasized proper use of reset method in docs. | John Sullivan | 2014-04-19 | 1 | -5/+8 |
| | | | | This is related to waylan/Python-Markdown#305. | ||||
* | Fix typo in reference.txt | Martin Maillard | 2014-03-03 | 1 | -1/+1 |
| | |||||
* | Upped version to 2.4 final.2.4-final | Waylan Limberg | 2014-02-16 | 1 | -1/+1 |
| | |||||
* | Cleaned up some minor issues with recent changes to docs. | Waylan Limberg | 2014-02-16 | 8 | -36/+55 |
| | |||||
* | docs: capitalization fixes, plural fixes, small wording improvements | Jakub Klinkovský | 2014-02-15 | 17 | -54/+56 |
| | |||||
* | docs: update wikilinks documentation | Jakub Klinkovský | 2014-02-15 | 1 | -38/+24 |
| | |||||
* | docs: update toc documentation | Jakub Klinkovský | 2014-02-15 | 1 | -30/+43 |
| | |||||
* | docs: update smarty documentation | Jakub Klinkovský | 2014-02-15 | 1 | -19/+10 |
| | |||||
* | docs: update sane_lists documentation | Jakub Klinkovský | 2014-02-15 | 1 | -12/+4 |
| | |||||
* | docs: update nl2br documentation | Jakub Klinkovský | 2014-02-15 | 1 | -3/+15 |
| | |||||
* | docs: update meta_data documentation | Jakub Klinkovský | 2014-02-15 | 1 | -14/+25 |
| | |||||
* | docs: update header_id documentation | Jakub Klinkovský | 2014-02-15 | 1 | -10/+16 |
| | |||||
* | docs: update codehilite documentation | Jakub Klinkovský | 2014-02-15 | 1 | -67/+72 |
| | |||||
* | docs: improved documentation of the extra/ extensions | Jakub Klinkovský | 2014-02-15 | 7 | -78/+74 |
| | | | | | | Simplified, unified style, added some undocumented options. NOTE: Footnotes/UNIQUE_IDS stays mostly undocumented | ||||
* | Updated version 2.4 release notes. | Dmitry Shachnev | 2014-02-13 | 3 | -5/+39 |
| | |||||
* | typo | Mark Eichin | 2014-02-11 | 1 | -1/+1 |
| | | | chaining calls, not changing calls | ||||
* | Pedantic edit in installation instructions | Jesper Öqvist | 2014-02-06 | 1 | -1/+1 |
| | | | Fixed "you're"/"your" mixup. Sorry. | ||||
* | Document hl_lines feature for fenced_code and codehilite extensions. | A. Jesse Jiryu Davis | 2014-01-07 | 2 | -0/+36 |
| | |||||
* | Fixed silly spelling errors. | Waylan Limberg | 2014-01-01 | 1 | -6/+6 |
| | | | Must remember to spellcheck everything I type. | ||||
* | Updated footnote documentation for clarity. | Waylan Limberg | 2014-01-01 | 1 | -8/+21 |
| | | | This addresses a misunderstanding reported in issue #273. The behavior has not changed. The docs just better reflect the actual behavior better. Apparently using the word "definition" both for footnotes and definition lists was an unfortunate coincidence that created confusion. We now use the term "footnote content". | ||||
* | Merge pull request #266 from ryneeverett/issue52 | Waylan Limberg | 2013-12-23 | 1 | -7/+5 |
|\ | | | | | miscellaneous issue52 improvements | ||||
| * | Miscellaneous improvements and bug fixes. | ryneeverett | 2013-11-19 | 1 | -7/+5 |
| | | |||||
* | | added missing 's' to wikilinks documentation | Colorado Reed | 2013-12-22 | 1 | -3/+2 |
|/ | |||||
* | Update reference.txt | Waylan Limberg | 2013-10-23 | 1 | -1/+1 |
| | | | Fixed #261. Thanks for the report @mpvharmelen. | ||||
* | Issue #52 | ryneeverett | 2013-10-14 | 1 | -0/+96 |
| | |||||
* | Mention new option in toc.txt | Dmitry Shachnev | 2013-09-29 | 1 | -0/+2 |
| |