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

Merge pull request #128 from wkpark/fixup_table

resolve #125 using strpos()
This commit is contained in:
Emanuil Rusev 2014-02-28 14:05:10 +02:00
commit 7ef45894a7

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();