aboutsummaryrefslogtreecommitdiffstats
path: root/docs/extensions
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|/
* Added smart_strong extension. Fixes Issue #17. Like PHP Markdown Extra, we ↵Waylan Limberg2011-06-072-0/+31
| | | | now include smart handling of double underscores (not just single underscores). The new behavior may be called seperately as the 'smart_strong' extension or as part of the 'extra' extension.
* Fixed a documentation error with recent wikilinks update and added a ↵Waylan Limberg2009-03-211-1/+1
| | | | regression test to make sure it continues to work.
* Fixed a few bugs in wikilinks url cleaning. And for those who don't like the ↵Waylan Limberg2009-03-201-0/+16
| | | | default, added a config which accepts a callable to replace the default. Updated tests and docs.
* Added documentation for the rest of the extensions included with the ↵Waylan Limberg2009-03-198-1/+469
| | | | distribution.
* Added documentation for Extra Extension and all the extentions it supports. ↵Waylan Limberg2009-03-187-0/+433
| | | | Still need to do non-extra extensions.
* Added extension subdir to docs with index listing all included extensions. ↵Waylan Limberg2009-03-171-0/+44
Now we just need to document each one.