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

Enable #hashtag support via setting

This commit is contained in:
Nathan Baulch
2018-03-30 03:44:47 +11:00
committed by Aidan Woods
parent 8a90586218
commit d0279cdd3b
2 changed files with 11 additions and 1 deletions

1
test/ParsedownTest.php Normal file → Executable file
View File

@ -32,6 +32,7 @@ class ParsedownTest extends TestCase
protected function initParsedown()
{
$Parsedown = new TestParsedown();
$Parsedown->setHastagsEnabled(true);
return $Parsedown;
}