Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Renamed a few docswith better file names. | Waylan Limberg | 2012-03-07 | 9 | -26/+25 |
| | |||||
* | Fixed a few minor redering bugs in docs. | Waylan Limberg | 2012-03-07 | 1 | -1/+1 |
| | |||||
* | Refactored Docs to use Sphinx styled template. | Waylan Limberg | 2012-03-01 | 29 | -31/+933 |
| | | | | | | 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 Limberg | 2012-01-24 | 2 | -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. | ||||
* | Release 2.1.1. A bugfix release.2.1.1.final | Waylan Limberg | 2012-01-22 | 1 | -0/+7 |
| | |||||
* | Updated change log to include last few releases. | Waylan Limberg | 2012-01-22 | 1 | -0/+4 |
| | | | I forget about this now that we have a git log and release notes. | ||||
* | Version 2.1.0-Final2.1.0.final | Waylan Limberg | 2011-11-24 | 1 | -6/+3 |
| | |||||
* | Release 2.1.0-Beta2.1.0.beta | Waylan Limberg | 2011-10-10 | 1 | -24/+25 |
| | |||||
* | Removed another [[wikilink]] style link from the docs. | Waylan Limberg | 2011-10-06 | 1 | -1/+2 |
| | |||||
* | Fixed a few issues with writing_extensions.md. | Waylan Limberg | 2011-10-06 | 1 | -11/+14 |
| | |||||
* | Fixed minor typo in docs/index.md | Waylan Limberg | 2011-10-06 | 1 | -1/+1 |
| | |||||
* | Added an index.md file to the docs. The docs can now be a full website unto ↵ | Waylan Limberg | 2011-10-06 | 1 | -0/+61 |
| | | | | themselves. | ||||
* | Updated docs/extensions/index to be more informative - not just list extensions. | Waylan Limberg | 2011-10-06 | 1 | -2/+30 |
| | |||||
* | Do'h! Fixed a silly typo. | Waylan Limberg | 2011-10-05 | 1 | -1/+1 |
| | |||||
* | Fixed a few typos in the using_as_module docs. | Waylan Limberg | 2011-10-05 | 1 | -12/+16 |
| | |||||
* | Fixed one more [[wikilink]] missed in previous commit. | Waylan Limberg | 2011-10-05 | 1 | -1/+1 |
| | |||||
* | Fixed a few errors in the 2.1.0-alpha release notes and updated links to not ↵ | Waylan Limberg | 2011-10-05 | 1 | -13/+15 |
| | | | | use the [[wikilink]] style. | ||||
* | Made a few minor edits to command line docs. | Waylan Limberg | 2011-10-05 | 1 | -4/+4 |
| | |||||
* | Updated docs to no longer use the [[wikilink]] style links from the old ↵ | Waylan Limberg | 2011-09-22 | 6 | -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 Limberg | 2011-09-22 | 1 | -9/+7 |
| | |||||
* | Added support to build_docs command to copy non markdown files unmodified. | Waylan Limberg | 2011-08-23 | 2 | -6/+6 |
| | |||||
* | Update build_docs script for the *.txt -> *.md change in docs. | Waylan Limberg | 2011-08-23 | 1 | -1/+75 |
| | |||||
* | Renamed *.txt -> *.md in docs. | Waylan Limberg | 2011-08-23 | 28 | -39/+1 |
| | |||||
* | The build_docs command now uses extra and toc extensions and a template on ↵ | Waylan Limberg | 2011-08-04 | 1 | -0/+20 |
| | | | | the file system. | ||||
* | Updated release notes to include a note about support for python's `-m` option. | Waylan Limberg | 2011-08-03 | 1 | -0/+6 |
| | |||||
* | Added support for python's '-m' command line option. Do 'python -m markdown ↵ | Waylan Limberg | 2011-08-03 | 1 | -16/+34 |
| | | | | [options] [args]'. I suspect will drop the command line script (markdown_py) when we drop support for Python 2.4 as this is easier to support. | ||||
* | Markdown.convertFile now actually works with stdin and stdout. Previously ↵ | Waylan Limberg | 2011-08-03 | 1 | -2/+3 |
| | | | | only the commandline script did. | ||||
* | Edited release notes. Made a few minor corrections and added a note ↵ | Waylan Limberg | 2011-07-28 | 1 | -7/+15 |
| | | | | regarding supported python versions. No more support for Python 2.3 with 2.4 support depreciated. We now support Python 3.2. | ||||
* | All internal encoding of output now uses the 'xmlcharrefreplace' error ↵ | Waylan Limberg | 2011-07-28 | 1 | -2/+6 |
| | | | | handler. Also added a note to the docs. Anyone doing their own encoding of output should be as well. | ||||
* | Updated release notes for recent changes to headerid extension. | Waylan Limberg | 2011-06-30 | 1 | -0/+6 |
| | |||||
* | Refactored HeaderId extension to no longer include defining ids. It only ↵ | Waylan Limberg | 2011-06-30 | 2 | -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 first draft of 2.1.0-Alpha release notes. | Waylan Limberg | 2011-06-23 | 1 | -0/+97 |
| | |||||
* | Added html5 and xhtml5 output formats. These are just aliases to html4 and ↵ | Waylan Limberg | 2011-06-23 | 1 | -2/+4 |
| | | | | xhtml1 searializers respectively. | ||||
* | Cleaned up backward compatability of old positional arguments. Some people ↵ | Waylan Limberg | 2011-06-23 | 1 | -8/+9 |
| | | | | may be using them, so we should continue to support them. Also adjusted docs to encourage using keyword args only. However, if existing code was using positional args in previous versions, it should still work. | ||||
* | Added nl2br extension. Closes #13. Thanks to Brian Neal for writing the code ↵ | Waylan Limberg | 2011-06-21 | 2 | -17/+21 |
| | | | | and allowing us to use it. | ||||
* | Merge branch 'master' of https://github.com/waylan/Python-Markdown | Waylan Limberg | 2011-06-20 | 1 | -0/+7 |
|\ | |||||
| * | Minor Doc update. Fixed a typo in previous commit. | Waylan Limberg | 2011-06-20 | 1 | -1/+1 |
| | | |||||
| * | allow language guessing to be disabled by passing a setting to CodeHilite - ↵ | Rob McBroom | 2011-06-19 | 1 | -0/+7 |
| | | | | | | | | closes #24 | ||||
* | | Added docs and tests to attr_list ext. Closes #7. | Waylan Limberg | 2011-06-20 | 1 | -0/+74 |
|/ | |||||
* | Added smart_strong extension. Fixes Issue #17. Like PHP Markdown Extra, we ↵ | Waylan Limberg | 2011-06-07 | 2 | -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. | ||||
* | Edited command line docs. Changed "Linux" to "*nix (Linux, OSX, BSD, Unix, ↵ | Waylan Limberg | 2011-05-18 | 1 | -2/+2 |
| | | | | etc.)" for completeness. | ||||
* | Updated command line docs to document the actual implementation. For ↵ | Waylan Limberg | 2011-05-18 | 1 | -44/+29 |
| | | | | example, the script is named "markdown_py". Also, no longer including the output of 'markdown_py --help' as that output has changed from time to time, but doesn't ever get updated here. The user can just run it if they need to. All we need to do it document that the option exists. | ||||
* | Complete Rewrite of the using_as_module docs to clearly list all options. | Waylan Limberg | 2011-05-10 | 1 | -131/+191 |
| | |||||
* | The Testing Framework will now pass any non-reserved args set in test.cfg ↵ | Waylan Limberg | 2011-04-29 | 1 | -4/+2 |
| | | | | files as keyword arguments to Markdown for a given syntax test. As Markdown ignores unknown args, this should be safe and will allow testing of any newly added keywords without additional modification of the testing framework. | ||||
* | Documented concern raised in Ticket 85. Added a warning that enabling ↵ | Waylan Limberg | 2011-03-09 | 1 | -0/+8 |
| | | | | safe_mode does not turn off attributes, so they should be turned off seperately. | ||||
* | Added the re.UNICODE flag to inlinepatterns. Now all inlinepattern regex ↵ | Waylan Limberg | 2010-09-20 | 1 | -3/+4 |
| | | | | will match unicode characters when \w, \b, or \s is used. Also updated docs to reflect change. | ||||
* | Updated docs for recent changes to options accepted by the Markdown class ↵ | Waylan Limberg | 2010-07-12 | 2 | -33/+49 |
| | | | | and the import paths of various things used by extensions. | ||||
* | Moved INSTALL, LICENSE and README files out of docs dir and into root dir ↵ | Waylan Limberg | 2010-03-24 | 3 | -133/+0 |
| | | | | where they should be. | ||||
* | Added documentation for the test suite. | Waylan Limberg | 2010-02-14 | 1 | -0/+131 |
| | |||||
* | Upped version to 2.0.2-Final and added release notes. | Waylan Limberg | 2009-07-31 | 2 | -0/+15 |
| |