1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

Use ->toHtml over ->text

This commit is contained in:
Aidan Woods
2020-01-19 15:26:48 +00:00
parent a2ea704a43
commit a72455c78a
5 changed files with 10 additions and 10 deletions

View File

@@ -59,7 +59,7 @@ class CommonMarkTestWeak extends CommonMarkTestStrict
{
$expectedHtml = $this->cleanupHtml($expectedHtml);
$actualHtml = $this->Parsedown->text($markdown);
$actualHtml = $this->Parsedown->toHtml($markdown);
$actualHtml = $this->cleanupHtml($actualHtml);
$this->assertEquals($expectedHtml, $actualHtml);