aboutsummaryrefslogtreecommitdiffstats
path: root/tests/misc
Commit message (Collapse)AuthorAgeFilesLines
...
* | Cleanup and additional work on previous commit. NOTE: removed special ↵Waylan Limberg2010-01-033-4/+7
| | | | | | | | treatment if raw <div>s with multiple line breaks - they no longer automagicly process their content as markdown. This matches other implementations. Finished rest of code for use by an extension - to be added later.
* | Fixed Ticket 48. Quoted attributes in raw html are specificly ackowledged ↵Waylan Limberg2010-01-032-0/+8
| | | | | | | | | | | | now - allowing various arbitrary stuff (like x/html to be included without breaking the rawhtml parser. Although currently unused, the code also provides the parsed attributes as a dict. Should be useful for adding support for parsing markdown text within rawhtml in an extension.
* | Fixed ticket 44. Raw HTML now maintains original whitespace. Important ↵Waylan Limberg2010-01-032-0/+18
| | | | | | | | inside raw <pre> tags.
* | Fixed Ticket 38. With smart_emphasis turned on, emphasised text can now be ↵Waylan Limberg2009-07-212-0/+14
| | | | | | | | wrapped in punctuation without spaces and still will be converted to emphasis (ie: '[_foo_]'). Test included. Thanks for the report seanh.
* | Fixed ticket 35. Lists now work when padded with five or more spaces after ↵Waylan Limberg2009-06-172-0/+32
|/ | | | asterisk. Adjusted regex to eat all (one or more) of the spaces. While it may seem wrong (at least in the loose list case), this is how all other implementations work. And it solves a number of edge cases otherwise not accounted for in the list parser.
* Improved inline pattern regex for em & strong and added tests. Fixes Ticket ↵Waylan Limberg2009-03-302-0/+30
| | | | 30 and other related issues. Note that I went with php's behavior rather than perl's when we have have three (ie.: *** or ___) without a closing three.
* Completed nested lists and added a test. All tests pass.Waylan Limberg2009-02-042-0/+63
|
* Fixed blockquote test to match previous commit. No space after > now is a ↵Waylan Limberg2009-01-271-3/+5
| | | | blockquote.
* Fixed attribute creation to remove newlines and associated misc/uche test. ↵Waylan Limberg2008-12-081-2/+1
| | | | Apparently differant versions of ElementTree encode line breaks in attributes differantly. Therefore, we just remove any such linebreaks as they are insignificant anyway.
* Fixed para-with-hr test. The code was working correctly, but the test was wrong.Waylan Limberg2008-12-071-2/+3
|
* Adding para-with-hr test. (Broken at the moment.)Yuri Takhteyev2008-12-072-0/+6
|
* Fixed BlockquoteProcessor to acknowledge blocks in which the blockquote ↵Waylan Limberg2008-11-132-2/+18
| | | | starts after the first line. Also updated coresponding test as it had an error and added more detail. All core tests pass now. On to extensions.
* Fixed whitespace only line clearing and updated another test to match pl and ↵Waylan Limberg2008-11-131-11/+7
| | | | php output of lists. Only one test failing from core parser refactor now.
* Updated test as core parser now matched pl and php behavior in lists.Waylan Limberg2008-11-131-6/+4
|
* Fixed a streange anomily in whitespace a start of p and li tags. Mostly odd ↵Waylan Limberg2008-11-136-6/+6
| | | | tests corrected.
* Fixed various issues with the core parser - mostly whitespace related and ↵Waylan Limberg2008-11-132-5/+5
| | | | updated a few tests that weren't quite right - that is they now better match pl or php implementations.
* Added a more thorough test of nested inline markup. Thanks John Szakmeister.John Szakmeister2008-10-292-0/+30
|
* Moved prettifyETree into a Postprocessor and added code to append all '<br ↵Waylan Limberg2008-09-042-6/+12
| | | | />' tags with a linebreak. Also fixed a minor bug were the '<br />' tags contained 2 spaces instead of one before the slash (i.e. '<br />'). Note that by moving to a Postprocessor, anyone can override with their own code which does what they want (i.e. add indentation) with the extension api.
* Replaced indentation with linebreaks only. At least its more consistant - ↵Waylan Limberg2008-09-0341-243/+130
| | | | and it better matches other markdown implementations. Also updated tests.
* Oops, forgot to add mismatched-tags test.Artem Yunusov2008-08-242-1/+18
|
* Fixed Ticket 11. Disabled ``indenteTree`` for `pre` and `code` tags. NowWaylan Limberg2008-08-227-83/+61
| | | | | | | | | whitespace is preserved in codeblocks. As a side-benefit, this also solved the issue with the safe-mode tests failing. All tests incorectly altered at ElementTree conversion have been corrected for this bug. Any remaining tests that fail are unrelated to this.
* Fixed Ticket 13. Raw block-level html are no longer being inserted into <p> ↵Waylan Limberg2008-08-2211-39/+49
| | | | | | | | | | | | | tags. Also edited numerious tests that were expecting wrong output - they now expect correct output. Note that a few **still fail** because the output before moving to ELementTree wasn't correct either. So I set the expected output to what I think it should be so we don't forget about it later. I should also note that the 'safe-mode' tests are failing. However, I believe the current expected output is correct as it is valid html. Interestingly, these tests passed prior to this fix. We'll need to special case safe-mode here.
* Updated tests with raw block level html in them. **Note** these tests do not ↵Waylan Limberg2008-08-223-13/+17
| | | | pass now - but they should! We need to fix the bug which the tests were previosuly hiding!
* Removed executable status on some test files ??? not sure why it was there ↵Waylan Limberg2008-08-224-0/+0
| | | | to begin with??
* Adding unicode tests for Neale's fix. (Those only pass after changingYuri Takhteyev2008-08-202-0/+6
| | | | str to unicode.)
* Changing string to unicode in Neale's fix. Adding test cases.Yuri Takhteyev2008-08-202-0/+5
|
* Forgot to add headers.txt to commit.Artem Yunusov2008-08-131-0/+4
|
* Header test extended.Artem Yunusov2008-08-131-2/+5
|
* A lot of bug fixes, added ElementTree support for extensions, some new tests.Artem Yunusov2008-07-314-0/+13
|
* Missing link defenition bug fixed.Artem Yunusov2008-07-222-0/+7
|
* Ops, forgot to add new test filesArtem Yunusov2008-07-196-0/+55
|
* Output bug fixed(stripping text data at the end of processing in ↵Artem Yunusov2008-07-1510-42/+48
| | | | _processPlaceholders). Ticket #5 fixed.
* A lot of bug fixes. Handlig attributes added, new hr processing. Reformatted ↵Artem Yunusov2008-07-1455-820/+502
| | | | test suite for ElementTree output.
* Code blocks escaping bug fixed. Some test suite modifications.Artem Yunusov2008-07-034-8/+6
|
* Allow hashes (#) in body of headers -- with tests. Thank you John ↵Waylan Limberg2008-05-142-1/+5
| | | | Szakmeister for the bug report and patch.
* Added safe_mode to testing framework and soem tests.Waylan Limberg2008-03-191-41/+51
|
* Moved line-endings cleanup from transform to convert method so it runs prior ↵Waylan Limberg2008-03-062-0/+10
| | | | 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-032-0/+0
| | | | other minor cleanup things.
* Some tests I forgot to checking with recent commits.Waylan Limberg2008-03-032-0/+43
|
* Fixed bugs involving greedy/non-greedy regexesDavid Wolever2008-02-293-53/+3
|
* Added svn:ignore properties to test directories, checked in failing test case.David Wolever2008-02-182-0/+3
|
* No longer replacing " with @quot;. Fixes [1862742]Waylan Limberg2008-02-096-71/+64
|
* Adjustments to match unicode policy as discussed on list and other minor Waylan Limberg2007-12-133-63/+51
| | | | | cleanup in preparation for release 1.7.
* Added support for images inside links and updated tests. Fixes [1458136].Waylan Limberg2007-11-293-48/+42
| | | | | | | | Note, to accomplish this, a negative lookbehind (for a !) was added to each link regex so they could be run before the image regex. The (fairly new) recursion on the link text then parses the image. Not sure how the negative lookbehind will affect performance.
* Footnotes that end in anyting but a <p> (list, blockquote, codeblock) now haveWaylan Limberg2007-11-291-44/+51
| | | | | | | | | | | | | | | | the backlink in a <p> which is appended to the end of the footnote. Fixes [1831600] Also fixed multiparagraph footnotes so that the first paragraph is actually wrapped in a <p> element. This results in one-liners also wrapped in <p> elements, but this is inline with PHP Markdown Extra's behavior. That means the test for `node.type == "text"` should never get a match, but I'm leaving it in for now. Also added some tests, although they are not properly included in a test directory for use with the testing framework. Seeing the framework currently ignores extensions, we'll worry about that later.
* Allow repeated calls to md.convert to pass in an empty string. Also fixed ↵Waylan Limberg2007-11-032-0/+0
| | | | testing framework to allow tests for this and added tests. Fixes [1825231]
* added tests for codeblock on first lineWaylan Limberg2007-11-032-0/+3
|
* Fixed infinite loop in bracket regex and added testsWaylan Limberg2007-10-302-0/+122
|
* Horizontal rules in block quotes with tests. Fixes [1709864].Waylan Limberg2007-10-112-0/+44
|
* Previous commit (r42) was supposed to update the misc/two-spaces test so ↵Waylan Limberg2007-10-112-0/+36
| | | | here it is.