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

resolve #125 using strpos()

This commit is contained in:
Won-Kyu Park 2014-02-27 21:50:17 +09:00
parent 886c620440
commit 9bf64d2e31

View File

@ -312,7 +312,7 @@ class Parsedown
continue 2;
}
if ($line[0] === '|')
if (strpos($line, '|') !== false)
{
$nestedBlocks = array();
@ -385,7 +385,7 @@ class Parsedown
continue 2;
}
if ($line[0] === '|' and $block['content'][0] === '|' and chop($line, ' -:|') === '')
if (strpos($line, '|') !== false and strpos($block['content'], '|') !== false and chop($line, ' -:|') === '')
{
$values = array();