aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Ops, forgot to add new test filesArtem Yunusov2008-07-196-0/+55
|
* Aggregated strong and strong_em regexps. Nested strong_em bug fix. Some new ↵Artem Yunusov2008-07-191-18/+8
| | | | tests added.
* Ticket #4fix. Deleted LINK_ANGLED_PATTERN, deleted Pattern.contentGroup ↵Artem Yunusov2008-07-191-22/+19
| | | | attribute.
* Aggregated regexp for both backtick and double backtick.Artem Yunusov2008-07-163-12/+7
|
* Ticket #5, backtick regexp change.Artem Yunusov2008-07-161-4/+4
|
* Output bug fixed(stripping text data at the end of processing in ↵Artem Yunusov2008-07-1515-319/+339
| | | | _processPlaceholders). Ticket #5 fixed.
* A lot of bug fixes. Handlig attributes added, new hr processing. Reformatted ↵Artem Yunusov2008-07-1480-2314/+1871
| | | | test suite for ElementTree output.
* Unicode bug fix, stripping top level tags, small changes with identation.Artem Yunusov2008-07-091-7/+8
|
* Some bug fixes, added function that converts character code to entity ↵Artem Yunusov2008-07-081-380/+84
| | | | defenition.
* ElementTree support added.Artem Yunusov2008-07-062-145/+225
|
* Code blocks escaping bug fixed. Some test suite modifications.Artem Yunusov2008-07-039-56/+35
|
* Placeholder generator in InlineStash changed. Fixed bug with missing link ↵Artem Yunusov2008-07-031-55/+57
| | | | defenitions.
* New mechanism for processing Inline Patterns.Artem Yunusov2008-07-022-130/+187
|
* Code blocks escaping bug fixed.Artem2008-06-271-13/+11
|
* Test suite cleanup. README for markdown2 tests. Separation in two ↵Artem2008-06-2616-115/+103
| | | | stages(markdown to tree, applying inline patterns).
* Test suite cleanup. README for markdown2 tests. Separation in two ↵Artem2008-06-262-0/+63
| | | | stages(markdown to tree, applying inline patterns).
* second commitArtem2008-06-2498-0/+1273
|
* first commitArtem2008-06-243-15/+25
|
* create the test output directory if it doesn't already exist.Jeff Balogh2008-05-301-0/+3
| | | | codecs.open was failing without it.
* Whoops. "ht" -> "hd".Yuri Takhteyev2008-05-301-1/+1
|
* Making difflib.HtmlDiff optional for compatibility with python 2.3.Yuri Takhteyev2008-05-301-7/+11
|
* Merge git://gitorious.org/python-markdown/mainlineYuri Takhteyev2008-05-3010-215/+566
|\
| * The code & pre tags in Fenced Code Blocks are now closed properly.Waylan Limberg2008-05-181-5/+5
| |
| * Allow hashes (#) in body of headers -- with tests. Thank you John ↵Waylan Limberg2008-05-144-2/+9
| | | | | | | | Szakmeister for the bug report and patch.
| * Added Meta-Data and HeaderId extensions. Updated setup.py to include all ↵Waylan Limberg2008-05-123-1/+265
| | | | | | | | packages extensions.
| * Added fenced_code extension and .gitignore file.Waylan Limberg2008-05-122-0/+106
| |
| * Cleaned up doc strings and greatly simplified the codehilite extension. ↵Waylan Limberg2008-05-021-192/+136
| | | | | | | | Removed support or enscript and dp highlighing engines - only pygments is supported.
| * Updated tests in wikilink extension to match current markdown (use convert, ↵Waylan Limberg2008-05-021-20/+50
| | | | | | | | unicode output and trimmed whitespace) and added unobstrusive meta-data support.
* | unwrapping urlparse result tuple manually for python 2.4 compatibility.Jeff Balogh2008-05-301-4/+4
|/ | | | | In 2.5 the result is wrapped in a ParseResult class so that fields can be accessed by name, but a plain tuple is returned in 2.4.
* Merge git://gitorious.org/python-markdown/mainlineYuri Takhteyev2008-05-021-1/+1
|\
| * Updated version_info from 'rc-2' to 'final'. Should have done this before ↵waylan2008-04-281-1/+1
| | | | | | | | the 1.7 final release.
* | Adding four extensions that weren't in source control before.Yuri Takhteyev2008-05-024-0/+575
|/
* Added safe_mode to testing framework and soem tests.Waylan Limberg2008-03-1911-64/+328
|
* Added sanatition of link urls when in safe_mode to no longer allow ↵Waylan Limberg2008-03-183-6/+96
| | | | javascript. Not yet convinced I got all cases, but it's much better than before. Also added some tests although testing framework doesn't currently have the option to run in safe_mode. See [1914685] for more info.
* Added more docstrings. All but a few private methods should now be ↵Waylan Limberg2008-03-131-16/+61
| | | | documented in the code.
* Added docstrings to pre/post processors and misc aux functions.Waylan Limberg2008-03-121-19/+59
|
* Added docstrings to NanoDom classes and methods. May be some room for ↵Waylan Limberg2008-03-111-8/+45
| | | | improvement.
* Removed print_error method as it's not being used anywhere.Waylan Limberg2008-03-111-5/+0
|
* Added docstrings to all root level functions.Waylan Limberg2008-03-111-4/+63
|
* Fixing minor error in last commit.Waylan Limberg2008-03-101-1/+1
|
* Edited existing docstrings to more closely conform to PEP 257 and to contain ↵Waylan Limberg2008-03-101-106/+180
| | | | markdown formatting. Still a lot of documentation improvments to go.
* Moved line-endings cleanup from transform to convert method so it runs prior ↵Waylan Limberg2008-03-063-7/+16
| | | | to textPreprocessors. Raw HTML with CRLF line endings now works properly. Also added a test. Fixes [1908691].
* fixed testing framework to actually use the extensions passed in and a few ↵Waylan Limberg2008-03-036-43/+44
| | | | other minor cleanup things.
* Some tests I forgot to checking with recent commits.Waylan Limberg2008-03-034-4/+53
|
* Fixed bugs involving greedy/non-greedy regexesDavid Wolever2008-02-295-79/+9
|
* Added an example of how to use footnotes, fixed a small bug where the return ↵David Wolever2008-02-261-1/+9
| | | | link's title always said "Jump back to footnote 1"
* Removed the rigorous type-checking when loading extensions. If it walks ↵David Wolever2008-02-261-2/+4
| | | | like a duck...
* mdx_footnotes.makeExtension() was crashing because the default value of ↵David Wolever2008-02-261-1/+1
| | | | configs was None instead of [].
* forgot to include the extension in the error message.David Wolever2008-02-251-2/+2
|
* Modified the Markdown object to accept extensions as instantiated Extension ↵David Wolever2008-02-251-52/+53
| | | | objects. No APIs were harmed :)