aboutsummaryrefslogtreecommitdiffstats
path: root/docs/extensions
Commit message (Collapse)AuthorAgeFilesLines
* Fixed silly spelling errors.Waylan Limberg2014-01-011-6/+6
| | | Must remember to spellcheck everything I type.
* Updated footnote documentation for clarity.Waylan Limberg2014-01-011-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/issue52Waylan Limberg2013-12-231-7/+5
|\ | | | | miscellaneous issue52 improvements
| * Miscellaneous improvements and bug fixes.ryneeverett2013-11-191-7/+5
| |
* | added missing 's' to wikilinks documentationColorado Reed2013-12-221-3/+2
|/
* Issue #52ryneeverett2013-10-141-0/+96
|
* Mention new option in toc.txtDmitry Shachnev2013-09-291-0/+2
|
* Merge pull request #247 from vhf/patch-1Waylan Limberg2013-09-181-1/+1
|\ | | | | Typo fix
| * Typo fixvhf / victor felder2013-09-091-1/+1
| |
* | Clean trailing whitespaceAdam Dinwoodie2013-09-191-21/+21
| |
* | Correct documentation: `wikilink` -> `wikilinks`Adam Dinwoodie2013-09-191-6/+6
|/ | | | This fixes #250.
* Add documentation for smarty extensionDmitry Shachnev2013-07-264-4/+62
|
* Improved codehilite docs. Document `css_class` setting.Waylan Limberg2013-06-161-5/+13
| | | | | | Also cleaned up poor wording on other setting for codehilite. Thanks for the inital suggestion @davidcorne. Fixes #223.
* 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.
* Removed html_tidy docs.Waylan Limberg2013-03-131-34/+0
|
* Removed the html_tidy extension. See 2.3 release notes for explaination.Waylan Limberg2013-03-133-6/+4
|
* Tweaked the docs some more.Waylan Limberg2013-02-273-37/+37
|
* Various changes to docs for updated changes, clarity, and to fix typos.Waylan Limberg2013-02-198-97/+103
|
* Ensure toc attribute is available on Markdown class.Waylan Limberg2013-02-191-2/+19
| | | | | | This appears to have recently been broken with the fixes in #191. This time I've added tests to prevent future breakage and added documentation to explain the behavior.
* Allow better linenum override in CodeHiliteWaylan Limberg2013-02-141-6/+19
| | | | | | | | | | | Fixes #148. The "force_linenos" config setting of the CodeHilite extension has been marked as Pending Deprecation and a new setting "linenums" has been added to replace it. See documentation for the [CodeHilite Extension] for an explaination of the new "linenums" setting. The new setting will honor the old "force_linenos" if it is set, but it will raise a PendingDeprecationWarning and will likely be removed in a future version of Python-Markdown. [CodeHilite Extension]: extensions/codehilite.html
* Remove RSS Extension.Waylan Limberg2013-02-124-47/+4
| | | | | | Closes #143. If you would like to continue using the extension (not recomended), it is archived on [Github](https://gist.github.com/waylan/4773365).
* Noted in docs that admonitions are experimental.Waylan Limberg2013-02-101-1/+5
|
* Better synthax description in the docs.Tiago Serafim2013-02-091-1/+1
|
* Merge branch 'master' into admonitionTiago Serafim2013-02-093-22/+57
|\ | | | | | | | | | | Conflicts: docs/extensions/index.txt tests/extensions/test.cfg
| * Fixed minor typo in attr_list docs. Waylan Limberg2012-11-041-1/+1
| | | | | | Thanks @mitya57.
| * docs/extensions/index.txt: make it clear what name to pass for extensionsDmitry Shachnev2012-11-031-19/+53
| |
| * Fixed #141. Minor typo on wikilinks docs.Waylan Limberg2012-09-071-1/+1
| | | | | | Thanks for the report.
* | First version of the docs.Tiago Serafim2012-09-194-38/+114
|/
* 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
|/
* Fixed #106. Replaced all references to freewisdom.org (except for Yuri's ↵Waylan Limberg2012-06-281-1/+0
| | | | homepage).
* Fixed #110. Documented the 'fenced_code' extension's support for the ↵Waylan Limberg2012-06-281-0/+13
| | | | 'codehilite' extension.
* Rename docs/*.md => docs/*.txtWaylan Limberg2012-03-0719-0/+0
| | | | | | | | | 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-079-34/+35
|
* Added a bunch of internal links to the docs.Waylan Limberg2012-03-071-28/+19
|
* Renamed a few docswith better file names.Waylan Limberg2012-03-074-10/+629
|
* Refactored Docs to use Sphinx styled template.Waylan Limberg2012-03-0118-1/+110
| | | | | | This is not a full Sphinx implementation. Just a limited implementation which converts our markdown source filed to work with the default css for Sphinx so it looks like Pythons docs.
* Fixes #64. Added sane_list extension.Waylan Limberg2012-01-242-0/+76
| | | | | | | | | | This is an extension which alters the behavior of lists to be less surprising. If turned out to be rather simple to code. I'm surprised no one had written it yet. I should note that this extension does not generate separate lists if different unordered list markers are used (`*` verses `-` verses `+`) The way the parser works that would be a little more tricky.
* Updated docs/extensions/index to be more informative - not just list extensions.Waylan Limberg2011-10-061-2/+30
|
* Updated docs to no longer use the [[wikilink]] style links from the old ↵Waylan Limberg2011-09-226-38/+37
| | | | wiki. All links are not realative links which should work with the supplied docs generator.
* Updated Extra Extension docs to relect recent changes in the extension.Waylan Limberg2011-09-221-9/+7
|
* Renamed *.txt -> *.md in docs.Waylan Limberg2011-08-2318-27/+0
|
* Refactored HeaderId extension to no longer include defining ids. It only ↵Waylan Limberg2011-06-302-48/+50
| | | | autogenerates ids. If you want to define your own, use the attr_list extension. Also expanded HeaderId extension to use the same algorithm as the TOC extension (which is better) for slugifying the header text. Added config settings to override the default word separator and the slugify callable. Closes #16 as the reported bug is for a removed feature.
* Added nl2br extension. Closes #13. Thanks to Brian Neal for writing the code ↵Waylan Limberg2011-06-212-17/+21
| | | | and allowing us to use it.
* Merge branch 'master' of https://github.com/waylan/Python-MarkdownWaylan Limberg2011-06-201-0/+7
|\
| * Minor Doc update. Fixed a typo in previous commit.Waylan Limberg2011-06-201-1/+1
| |
| * allow language guessing to be disabled by passing a setting to CodeHilite - ↵Rob McBroom2011-06-191-0/+7
| | | | | | | | closes #24
* | Added docs and tests to attr_list ext. Closes #7.Waylan Limberg2011-06-201-0/+74
|/