aboutsummaryrefslogtreecommitdiffstats
path: root/docs/extensions/api.txt
Commit message (Collapse)AuthorAgeFilesLines
* Switch docs to MKDocs (#602)Waylan Limberg2017-12-061-682/+0
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #601. Merged in 6f87b32 from the md3 branch and did a lot of cleanup. Changes include: * Removed old docs build tool, templates, etc. * Added MkDocs config file, etc. * filename.txt => filename.md * pythonhost.org/Markdown => Python-Markdown.github.io * Markdown lint and other cleanup. * Automate pages deployment in makefile with `mkdocs gh-deploy` Assumes a git remote is set up named "pages". Do git remote add pages https://github.com/Python-Markdown/Python-Markdown.github.io.git ... before running `make deploy` the first time.
* Feature ancestry (#598)Isaac Muse2017-11-231-1/+5
| | | | | Ancestry exclusion for inline patterns. Adds the ability for an inline pattern to define a list of ancestor tag names that should be avoided. If a pattern would create a descendant of one of the listed tag names, the pattern will not match. Fixes #596.
* The location keyword of OrderedDict.add is not optional.Waylan Limberg2017-03-091-1/+1
| | | Fixes #554.
* Thorough spell check of the docs.Waylan Limberg2015-02-071-183/+185
|
* Better docs of treeprocessor API.Waylan Limberg2014-12-291-3/+14
| | | Fixes #375. Explains the difference between returning None and returning a modified root element. Also makes the docs more consistent with the doc strings in the code.
* Some docs cleanup.Waylan Limberg2014-08-291-2/+3
|
* Updated extension API docs for recent changes.Waylan Limberg2014-08-291-46/+68
|
* Updated extension API docs for Extension.__init__ refactorWaylan Limberg2014-08-011-9/+18
| | | Relates to #325.
* docs: capitalization fixes, plural fixes, small wording improvementsJakub Klinkovský2014-02-151-1/+1
|
* Typo fixvhf / victor felder2013-09-091-1/+1
|
* Updated extension API docs to list output_format and serializer on the md ↵Waylan Limberg2013-05-091-6/+9
| | | | | | | | | instance. I still need to document everything on that list and probably a few things missing from the list. I also updated the warning about monkey patching to be a "Warning" admonition - now that we have that extension. Probably should depreciate access to md_globals in the extension API -- as we don't actually use any anymore. That dates back to pre-OO code.
* Tweaked the docs some more.Waylan Limberg2013-02-271-1/+1
|
* Various changes to docs for updated changes, clarity, and to fix typos.Waylan Limberg2013-02-191-22/+40
|
* Misc typos.chri2012-08-281-2/+2
|
* 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
| |
* | Fixes example after moving AtomicString to utilAntoine Pelisse2012-07-181-1/+1
|/
* Rename docs/*.md => docs/*.txtWaylan Limberg2012-03-071-0/+612
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.