-
-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement new
max_nesting_level
setting (#243)
- Loading branch information
1 parent
68b1737
commit 57107ed
Showing
5 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
|
||
namespace League\CommonMark\Tests\functional; | ||
|
||
use League\CommonMark\CommonMarkConverter; | ||
|
||
class MaximumNestingLevelTest extends \PHPUnit_Framework_TestCase | ||
{ | ||
public function testThatWeCanHitTheLimit() | ||
{ | ||
$converter = new CommonMarkConverter(['max_nesting_level' => 2]); | ||
|
||
$markdown = '> > Foo'; | ||
$expected = '<blockquote> | ||
<blockquote> | ||
<p>Foo</p> | ||
</blockquote> | ||
</blockquote> | ||
'; | ||
|
||
$this->assertEquals($expected, $converter->convertToHtml($markdown)); | ||
} | ||
|
||
public function testThatWeCannotExceedTheLimit() | ||
{ | ||
$converter = new CommonMarkConverter(['max_nesting_level' => 2]); | ||
|
||
$markdown = '> > > > > > Foo'; | ||
$expected = '<blockquote> | ||
<blockquote> | ||
<p>> > > > Foo</p> | ||
</blockquote> | ||
</blockquote> | ||
'; | ||
|
||
$this->assertEquals($expected, $converter->convertToHtml($markdown)); | ||
} | ||
} |