Consider the following case ``` wiki {{{{{arg}} ``` which should be parsed as ``` [{{{] {{ [arg] }} ``` But my parser handles it as ``` [{] {{{ [{arg] }} ``` The corresponding test case is [UnitTestProject1.AbnormalCaseTests.TestBraces3](https://github.com/CXuesong/MwParserFromScratch/blob/master/UnitTestProject1/AbnormalCaseTests.cs#L151).
Consider the following case
{{{{{arg}}which should be parsed as
But my parser handles it as
The corresponding test case is UnitTestProject1.AbnormalCaseTests.TestBraces3.