aboutsummaryrefslogtreecommitdiffstats
path: root/tests/misc/nested-patterns.txt
Commit message (Collapse)AuthorAgeFilesLines
* Issue #365 Bold/Italic nesting fixfacelessuser2014-11-171-0/+4
| | | | | | | | | | | The logic for the current regex for strong/em and em/strong was sound, but the way it was implemented caused some unintended side effects. Whether it is a quirk with regex in general or just with Python’s re engine, I am not sure. Put basically `(\*|_){3}` causes issues with nested bold/italic. So, allowing the group to be defined, and then using the group number to specify the remaining sequential chars is a better way that works more reliably `(\*|_)\2{2}. Test from issue #365 was also added to check for this case in the future.
* Fix tail out of order issuefacelessuser2014-10-181-0/+2
| | | | | | | | | | | | This issue was discovered when dealing with nested inlines. In treeprocessors.py it was incorrectly handling tails. In short, tail elements were being inserted earlier than they were supposed to be. In order to fix this, the insertion index should be incremented by 1 so that when the tails are inserted into the parent, they will be just after the child they came from. Also added a test in nested-patterns to catch this issue.
* Fixed #106. Replaced all references to freewisdom.org (except for Yuri's ↵Waylan Limberg2012-06-281-7/+7
| | | | homepage).
* Ops, forgot to add new test filesArtem Yunusov2008-07-191-0/+7