mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
Compare commits
58 Commits
1.8.0-beta
...
v1.8.0-bet
Author | SHA1 | Date | |
---|---|---|---|
7d4c06cb52 | |||
f7b66e6b20 | |||
811bc32726 | |||
8fd5464c46 | |||
c26a2ee4bf | |||
ba3b60d6e4 | |||
0b1e6b8c86 | |||
1f69f7e697 | |||
c83af0a7d5 | |||
4686daf8c2 | |||
c9e7183cfa | |||
9eed1104e7 | |||
fd95703da5 | |||
8d172a2994 | |||
dfab7240a4 | |||
113c6d2b21 | |||
a9764ec90f | |||
0a842fb5b1 | |||
7f4318dbdb | |||
3e70819a20 | |||
2bf7ca41a0 | |||
b75fd409ff | |||
88a3f31dd7 | |||
726d4ef44a | |||
450a74fedf | |||
7e15d99d90 | |||
d2dd736e1b | |||
e74a5bd7ed | |||
b53aa74a72 | |||
3ea08140b6 | |||
c45e41950f | |||
2faba6fef5 | |||
b42add3762 | |||
107223d3a0 | |||
d4f1ac465c | |||
d6e306d620 | |||
dc5cf8770b | |||
70f5c02d47 | |||
90ad738933 | |||
f2327023c1 | |||
6f13f97674 | |||
8091e5586a | |||
cb33daf0e6 | |||
c440c91af5 | |||
3514881e14 | |||
043c55e4c6 | |||
e4cd13350b | |||
ae8067e862 | |||
5353ebb524 | |||
39df7d4f8e | |||
50f15add44 | |||
3f5b0ee781 | |||
9a021b2130 | |||
43d25a74fe | |||
1d68e5506c | |||
86940be224 | |||
cdaf86b039 | |||
1d65fb858a |
@ -13,13 +13,11 @@ matrix:
|
|||||||
- php: 7.0
|
- php: 7.0
|
||||||
- php: 7.1
|
- php: 7.1
|
||||||
- php: 7.2
|
- php: 7.2
|
||||||
|
- php: 7.3
|
||||||
- php: nightly
|
- php: nightly
|
||||||
- php: hhvm
|
|
||||||
- php: hhvm-nightly
|
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- php: nightly
|
- php: nightly
|
||||||
- php: hhvm-nightly
|
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- composer install --prefer-dist --no-interaction --no-progress
|
- composer install --prefer-dist --no-interaction --no-progress
|
||||||
|
417
Parsedown.php
Executable file → Normal file
417
Parsedown.php
Executable file → Normal file
@ -17,7 +17,7 @@ class Parsedown
|
|||||||
{
|
{
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
const version = '1.8.0-beta-1';
|
const version = '1.8.0-beta-6';
|
||||||
|
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
@ -65,15 +65,6 @@ class Parsedown
|
|||||||
|
|
||||||
protected $breaksEnabled;
|
protected $breaksEnabled;
|
||||||
|
|
||||||
function setLiteralBreaks($literalBreaks)
|
|
||||||
{
|
|
||||||
$this->literalBreaks = $literalBreaks;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected $literalBreaks;
|
|
||||||
|
|
||||||
function setMarkupEscaped($markupEscaped)
|
function setMarkupEscaped($markupEscaped)
|
||||||
{
|
{
|
||||||
$this->markupEscaped = $markupEscaped;
|
$this->markupEscaped = $markupEscaped;
|
||||||
@ -174,43 +165,34 @@ class Parsedown
|
|||||||
|
|
||||||
protected function linesElements(array $lines)
|
protected function linesElements(array $lines)
|
||||||
{
|
{
|
||||||
|
$Elements = array();
|
||||||
$CurrentBlock = null;
|
$CurrentBlock = null;
|
||||||
|
|
||||||
foreach ($lines as $line)
|
foreach ($lines as $line)
|
||||||
{
|
{
|
||||||
if ( ! $this->literalBreaks and chop($line) === '')
|
if (chop($line) === '')
|
||||||
{
|
{
|
||||||
if (isset($CurrentBlock))
|
if (isset($CurrentBlock))
|
||||||
{
|
{
|
||||||
$CurrentBlock['interrupted'] = true;
|
$CurrentBlock['interrupted'] = (isset($CurrentBlock['interrupted'])
|
||||||
|
? $CurrentBlock['interrupted'] + 1 : 1
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strpos($line, "\t") !== false)
|
while (($beforeTab = strstr($line, "\t", true)) !== false)
|
||||||
{
|
{
|
||||||
$parts = explode("\t", $line);
|
$shortage = 4 - mb_strlen($beforeTab, 'utf-8') % 4;
|
||||||
|
|
||||||
$line = $parts[0];
|
$line = $beforeTab
|
||||||
|
. str_repeat(' ', $shortage)
|
||||||
unset($parts[0]);
|
. substr($line, strlen($beforeTab) + 1)
|
||||||
|
;
|
||||||
foreach ($parts as $part)
|
|
||||||
{
|
|
||||||
$shortage = 4 - mb_strlen($line, 'utf-8') % 4;
|
|
||||||
|
|
||||||
$line .= str_repeat(' ', $shortage);
|
|
||||||
$line .= $part;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$indent = 0;
|
$indent = strspn($line, ' ');
|
||||||
|
|
||||||
while (isset($line[$indent]) and $line[$indent] === ' ')
|
|
||||||
{
|
|
||||||
$indent ++;
|
|
||||||
}
|
|
||||||
|
|
||||||
$text = $indent > 0 ? substr($line, $indent) : $line;
|
$text = $indent > 0 ? substr($line, $indent) : $line;
|
||||||
|
|
||||||
@ -222,7 +204,8 @@ class Parsedown
|
|||||||
|
|
||||||
if (isset($CurrentBlock['continuable']))
|
if (isset($CurrentBlock['continuable']))
|
||||||
{
|
{
|
||||||
$Block = $this->{'block'.$CurrentBlock['type'].'Continue'}($Line, $CurrentBlock);
|
$methodName = 'block' . $CurrentBlock['type'] . 'Continue';
|
||||||
|
$Block = $this->$methodName($Line, $CurrentBlock);
|
||||||
|
|
||||||
if (isset($Block))
|
if (isset($Block))
|
||||||
{
|
{
|
||||||
@ -234,22 +217,15 @@ class Parsedown
|
|||||||
{
|
{
|
||||||
if ($this->isBlockCompletable($CurrentBlock['type']))
|
if ($this->isBlockCompletable($CurrentBlock['type']))
|
||||||
{
|
{
|
||||||
$CurrentBlock = $this->{'block'.$CurrentBlock['type'].'Complete'}($CurrentBlock);
|
$methodName = 'block' . $CurrentBlock['type'] . 'Complete';
|
||||||
|
$CurrentBlock = $this->$methodName($CurrentBlock);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
if (isset($text[0]))
|
|
||||||
{
|
|
||||||
$marker = $text[0];
|
$marker = $text[0];
|
||||||
}
|
|
||||||
elseif ($this->literalBreaks)
|
|
||||||
{
|
|
||||||
$marker = '\n';
|
|
||||||
$text = ' ';
|
|
||||||
}
|
|
||||||
|
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
@ -268,7 +244,7 @@ class Parsedown
|
|||||||
|
|
||||||
foreach ($blockTypes as $blockType)
|
foreach ($blockTypes as $blockType)
|
||||||
{
|
{
|
||||||
$Block = $this->{'block'.$blockType}($Line, $CurrentBlock);
|
$Block = $this->{"block$blockType"}($Line, $CurrentBlock);
|
||||||
|
|
||||||
if (isset($Block))
|
if (isset($Block))
|
||||||
{
|
{
|
||||||
@ -276,7 +252,10 @@ class Parsedown
|
|||||||
|
|
||||||
if ( ! isset($Block['identified']))
|
if ( ! isset($Block['identified']))
|
||||||
{
|
{
|
||||||
$Blocks []= $CurrentBlock;
|
if (isset($CurrentBlock))
|
||||||
|
{
|
||||||
|
$Elements[] = $this->extractElement($CurrentBlock);
|
||||||
|
}
|
||||||
|
|
||||||
$Block['identified'] = true;
|
$Block['identified'] = true;
|
||||||
}
|
}
|
||||||
@ -294,17 +273,21 @@ class Parsedown
|
|||||||
|
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
if (
|
if (isset($CurrentBlock) and $CurrentBlock['type'] === 'Paragraph')
|
||||||
isset($CurrentBlock)
|
{
|
||||||
and isset($CurrentBlock['element']['name'])
|
$Block = $this->paragraphContinue($Line, $CurrentBlock);
|
||||||
and $CurrentBlock['element']['name'] === 'p'
|
}
|
||||||
and ! isset($CurrentBlock['interrupted'])
|
|
||||||
) {
|
if (isset($Block))
|
||||||
$CurrentBlock['element']['handler']['argument'] .= "\n".$text;
|
{
|
||||||
|
$CurrentBlock = $Block;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$Blocks []= $CurrentBlock;
|
if (isset($CurrentBlock))
|
||||||
|
{
|
||||||
|
$Elements[] = $this->extractElement($CurrentBlock);
|
||||||
|
}
|
||||||
|
|
||||||
$CurrentBlock = $this->paragraph($Line);
|
$CurrentBlock = $this->paragraph($Line);
|
||||||
|
|
||||||
@ -316,27 +299,15 @@ class Parsedown
|
|||||||
|
|
||||||
if (isset($CurrentBlock['continuable']) and $this->isBlockCompletable($CurrentBlock['type']))
|
if (isset($CurrentBlock['continuable']) and $this->isBlockCompletable($CurrentBlock['type']))
|
||||||
{
|
{
|
||||||
$CurrentBlock = $this->{'block'.$CurrentBlock['type'].'Complete'}($CurrentBlock);
|
$methodName = 'block' . $CurrentBlock['type'] . 'Complete';
|
||||||
|
$CurrentBlock = $this->$methodName($CurrentBlock);
|
||||||
}
|
}
|
||||||
|
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
$Blocks []= $CurrentBlock;
|
if (isset($CurrentBlock))
|
||||||
|
|
||||||
unset($Blocks[0]);
|
|
||||||
|
|
||||||
# ~
|
|
||||||
|
|
||||||
$Elements = array();
|
|
||||||
|
|
||||||
foreach ($Blocks as $Block)
|
|
||||||
{
|
{
|
||||||
if (isset($Block['hidden']))
|
$Elements[] = $this->extractElement($CurrentBlock);
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$Elements[] = $Block['element'];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# ~
|
# ~
|
||||||
@ -344,14 +315,31 @@ class Parsedown
|
|||||||
return $Elements;
|
return $Elements;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function extractElement(array $Component)
|
||||||
|
{
|
||||||
|
if ( ! isset($Component['element']))
|
||||||
|
{
|
||||||
|
if (isset($Component['markup']))
|
||||||
|
{
|
||||||
|
$Component['element'] = array('rawHtml' => $Component['markup']);
|
||||||
|
}
|
||||||
|
elseif (isset($Component['hidden']))
|
||||||
|
{
|
||||||
|
$Component['element'] = array();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $Component['element'];
|
||||||
|
}
|
||||||
|
|
||||||
protected function isBlockContinuable($Type)
|
protected function isBlockContinuable($Type)
|
||||||
{
|
{
|
||||||
return method_exists($this, 'block'.$Type.'Continue');
|
return method_exists($this, 'block' . $Type . 'Continue');
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function isBlockCompletable($Type)
|
protected function isBlockCompletable($Type)
|
||||||
{
|
{
|
||||||
return method_exists($this, 'block'.$Type.'Complete');
|
return method_exists($this, 'block' . $Type . 'Complete');
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -359,7 +347,7 @@ class Parsedown
|
|||||||
|
|
||||||
protected function blockCode($Line, $Block = null)
|
protected function blockCode($Line, $Block = null)
|
||||||
{
|
{
|
||||||
if (isset($Block) and ! isset($Block['type']) and ! isset($Block['interrupted']))
|
if (isset($Block) and $Block['type'] === 'Paragraph' and ! isset($Block['interrupted']))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -388,7 +376,7 @@ class Parsedown
|
|||||||
{
|
{
|
||||||
if (isset($Block['interrupted']))
|
if (isset($Block['interrupted']))
|
||||||
{
|
{
|
||||||
$Block['element']['element']['text'] .= "\n";
|
$Block['element']['element']['text'] .= str_repeat("\n", $Block['interrupted']);
|
||||||
|
|
||||||
unset($Block['interrupted']);
|
unset($Block['interrupted']);
|
||||||
}
|
}
|
||||||
@ -405,10 +393,6 @@ class Parsedown
|
|||||||
|
|
||||||
protected function blockCodeComplete($Block)
|
protected function blockCodeComplete($Block)
|
||||||
{
|
{
|
||||||
$text = $Block['element']['element']['text'];
|
|
||||||
|
|
||||||
$Block['element']['element']['text'] = $text;
|
|
||||||
|
|
||||||
return $Block;
|
return $Block;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -462,25 +446,49 @@ class Parsedown
|
|||||||
|
|
||||||
protected function blockFencedCode($Line)
|
protected function blockFencedCode($Line)
|
||||||
{
|
{
|
||||||
if (preg_match('/^(['.$Line['text'][0].']{3,})[ ]*([^`]+)?[ ]*$/', $Line['text'], $matches))
|
$marker = $Line['text'][0];
|
||||||
|
|
||||||
|
$openerLength = strspn($Line['text'], $marker);
|
||||||
|
|
||||||
|
if ($openerLength < 3)
|
||||||
{
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$infostring = trim(substr($Line['text'], $openerLength), "\t ");
|
||||||
|
|
||||||
|
if (strpos($infostring, '`') !== false)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$Element = array(
|
$Element = array(
|
||||||
'name' => 'code',
|
'name' => 'code',
|
||||||
'text' => '',
|
'text' => '',
|
||||||
);
|
);
|
||||||
|
|
||||||
if (isset($matches[2]))
|
if ($infostring !== '')
|
||||||
{
|
{
|
||||||
$class = 'language-'.$matches[2];
|
/**
|
||||||
|
* https://www.w3.org/TR/2011/WD-html5-20110525/elements.html#classes
|
||||||
|
* Every HTML element may have a class attribute specified.
|
||||||
|
* The attribute, if specified, must have a value that is a set
|
||||||
|
* of space-separated tokens representing the various classes
|
||||||
|
* that the element belongs to.
|
||||||
|
* [...]
|
||||||
|
* The space characters, for the purposes of this specification,
|
||||||
|
* are U+0020 SPACE, U+0009 CHARACTER TABULATION (tab),
|
||||||
|
* U+000A LINE FEED (LF), U+000C FORM FEED (FF), and
|
||||||
|
* U+000D CARRIAGE RETURN (CR).
|
||||||
|
*/
|
||||||
|
$language = substr($infostring, 0, strcspn($infostring, " \t\n\f\r"));
|
||||||
|
|
||||||
$Element['attributes'] = array(
|
$Element['attributes'] = array('class' => "language-$language");
|
||||||
'class' => $class,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$Block = array(
|
$Block = array(
|
||||||
'char' => $Line['text'][0],
|
'char' => $marker,
|
||||||
'openerLength' => mb_strlen($matches[1]),
|
'openerLength' => $openerLength,
|
||||||
'element' => array(
|
'element' => array(
|
||||||
'name' => 'pre',
|
'name' => 'pre',
|
||||||
'element' => $Element,
|
'element' => $Element,
|
||||||
@ -489,7 +497,6 @@ class Parsedown
|
|||||||
|
|
||||||
return $Block;
|
return $Block;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
protected function blockFencedCodeContinue($Line, $Block)
|
protected function blockFencedCodeContinue($Line, $Block)
|
||||||
{
|
{
|
||||||
@ -500,14 +507,13 @@ class Parsedown
|
|||||||
|
|
||||||
if (isset($Block['interrupted']))
|
if (isset($Block['interrupted']))
|
||||||
{
|
{
|
||||||
$Block['element']['element']['text'] .= "\n";
|
$Block['element']['element']['text'] .= str_repeat("\n", $Block['interrupted']);
|
||||||
|
|
||||||
unset($Block['interrupted']);
|
unset($Block['interrupted']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (($len = strspn($Line['text'], $Block['char'])) >= $Block['openerLength']
|
||||||
preg_match('/^(['.preg_quote($Block['char']).']{3,})[ ]*$/', $Line['text'], $matches)
|
and chop(substr($Line['text'], $len), ' ') === ''
|
||||||
and mb_strlen($matches[1]) >= $Block['openerLength']
|
|
||||||
) {
|
) {
|
||||||
$Block['element']['element']['text'] = substr($Block['element']['element']['text'], 1);
|
$Block['element']['element']['text'] = substr($Block['element']['element']['text'], 1);
|
||||||
|
|
||||||
@ -516,17 +522,13 @@ class Parsedown
|
|||||||
return $Block;
|
return $Block;
|
||||||
}
|
}
|
||||||
|
|
||||||
$Block['element']['element']['text'] .= "\n".$Line['body'];
|
$Block['element']['element']['text'] .= "\n" . $Line['body'];
|
||||||
|
|
||||||
return $Block;
|
return $Block;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function blockFencedCodeComplete($Block)
|
protected function blockFencedCodeComplete($Block)
|
||||||
{
|
{
|
||||||
$text = $Block['element']['element']['text'];
|
|
||||||
|
|
||||||
$Block['element']['element']['text'] = $text;
|
|
||||||
|
|
||||||
return $Block;
|
return $Block;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -535,12 +537,7 @@ class Parsedown
|
|||||||
|
|
||||||
protected function blockHeader($Line)
|
protected function blockHeader($Line)
|
||||||
{
|
{
|
||||||
$level = 1;
|
$level = strspn($Line['text'], '#');
|
||||||
|
|
||||||
while (isset($Line['text'][$level]) and $Line['text'][$level] === '#')
|
|
||||||
{
|
|
||||||
$level ++;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($level > 6)
|
if ($level > 6)
|
||||||
{
|
{
|
||||||
@ -575,9 +572,9 @@ class Parsedown
|
|||||||
|
|
||||||
protected function blockList($Line, array $CurrentBlock = null)
|
protected function blockList($Line, array $CurrentBlock = null)
|
||||||
{
|
{
|
||||||
list($name, $pattern) = $Line['text'][0] <= '-' ? array('ul', '[*+-]') : array('ol', '[0-9]{1,9}[.\)]');
|
list($name, $pattern) = $Line['text'][0] <= '-' ? array('ul', '[*+-]') : array('ol', '[0-9]{1,9}+[.\)]');
|
||||||
|
|
||||||
if (preg_match('/^('.$pattern.'([ ]+|$))(.*)/', $Line['text'], $matches))
|
if (preg_match('/^('.$pattern.'([ ]++|$))(.*+)/', $Line['text'], $matches))
|
||||||
{
|
{
|
||||||
$contentIndent = strlen($matches[2]);
|
$contentIndent = strlen($matches[2]);
|
||||||
|
|
||||||
@ -592,19 +589,22 @@ class Parsedown
|
|||||||
$matches[1] .= ' ';
|
$matches[1] .= ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$markerWithoutWhitespace = strstr($matches[1], ' ', true);
|
||||||
|
|
||||||
$Block = array(
|
$Block = array(
|
||||||
'indent' => $Line['indent'],
|
'indent' => $Line['indent'],
|
||||||
'pattern' => $pattern,
|
'pattern' => $pattern,
|
||||||
'data' => array(
|
'data' => array(
|
||||||
'type' => $name,
|
'type' => $name,
|
||||||
'marker' => $matches[1],
|
'marker' => $matches[1],
|
||||||
'markerType' => ($name === 'ul' ? strstr($matches[1], ' ', true) : substr(strstr($matches[1], ' ', true), -1)),
|
'markerType' => ($name === 'ul' ? $markerWithoutWhitespace : substr($markerWithoutWhitespace, -1)),
|
||||||
),
|
),
|
||||||
'element' => array(
|
'element' => array(
|
||||||
'name' => $name,
|
'name' => $name,
|
||||||
'elements' => array(),
|
'elements' => array(),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
$Block['data']['markerTypeRegex'] = preg_quote($Block['data']['markerType'], '/');
|
||||||
|
|
||||||
if ($name === 'ol')
|
if ($name === 'ol')
|
||||||
{
|
{
|
||||||
@ -614,7 +614,7 @@ class Parsedown
|
|||||||
{
|
{
|
||||||
if (
|
if (
|
||||||
isset($CurrentBlock)
|
isset($CurrentBlock)
|
||||||
and ! isset($CurrentBlock['type'])
|
and $CurrentBlock['type'] === 'Paragraph'
|
||||||
and ! isset($CurrentBlock['interrupted'])
|
and ! isset($CurrentBlock['interrupted'])
|
||||||
) {
|
) {
|
||||||
return;
|
return;
|
||||||
@ -652,10 +652,10 @@ class Parsedown
|
|||||||
and (
|
and (
|
||||||
(
|
(
|
||||||
$Block['data']['type'] === 'ol'
|
$Block['data']['type'] === 'ol'
|
||||||
and preg_match('/^[0-9]+'.preg_quote($Block['data']['markerType']).'(?:[ ]+(.*)|$)/', $Line['text'], $matches)
|
and preg_match('/^[0-9]++'.$Block['data']['markerTypeRegex'].'(?:[ ]++(.*)|$)/', $Line['text'], $matches)
|
||||||
) or (
|
) or (
|
||||||
$Block['data']['type'] === 'ul'
|
$Block['data']['type'] === 'ul'
|
||||||
and preg_match('/^'.preg_quote($Block['data']['markerType']).'(?:[ ]+(.*)|$)/', $Line['text'], $matches)
|
and preg_match('/^'.$Block['data']['markerTypeRegex'].'(?:[ ]++(.*)|$)/', $Line['text'], $matches)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
@ -717,7 +717,7 @@ class Parsedown
|
|||||||
|
|
||||||
if ( ! isset($Block['interrupted']))
|
if ( ! isset($Block['interrupted']))
|
||||||
{
|
{
|
||||||
$text = preg_replace('/^[ ]{0,'.$requiredIndent.'}/', '', $Line['body']);
|
$text = preg_replace('/^[ ]{0,'.$requiredIndent.'}+/', '', $Line['body']);
|
||||||
|
|
||||||
$Block['li']['handler']['argument'] []= $text;
|
$Block['li']['handler']['argument'] []= $text;
|
||||||
|
|
||||||
@ -746,7 +746,7 @@ class Parsedown
|
|||||||
|
|
||||||
protected function blockQuote($Line)
|
protected function blockQuote($Line)
|
||||||
{
|
{
|
||||||
if (preg_match('/^>[ ]?(.*)/', $Line['text'], $matches))
|
if (preg_match('/^>[ ]?+(.*+)/', $Line['text'], $matches))
|
||||||
{
|
{
|
||||||
$Block = array(
|
$Block = array(
|
||||||
'element' => array(
|
'element' => array(
|
||||||
@ -770,7 +770,7 @@ class Parsedown
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($Line['text'][0] === '>' and preg_match('/^>[ ]?(.*)/', $Line['text'], $matches))
|
if ($Line['text'][0] === '>' and preg_match('/^>[ ]?+(.*+)/', $Line['text'], $matches))
|
||||||
{
|
{
|
||||||
$Block['element']['handler']['argument'] []= $matches[1];
|
$Block['element']['handler']['argument'] []= $matches[1];
|
||||||
|
|
||||||
@ -790,7 +790,9 @@ class Parsedown
|
|||||||
|
|
||||||
protected function blockRule($Line)
|
protected function blockRule($Line)
|
||||||
{
|
{
|
||||||
if (preg_match('/^(['.$Line['text'][0].'])([ ]*\1){2,}[ ]*$/', $Line['text']))
|
$marker = $Line['text'][0];
|
||||||
|
|
||||||
|
if (substr_count($Line['text'], $marker) >= 3 and chop($Line['text'], " $marker") === '')
|
||||||
{
|
{
|
||||||
$Block = array(
|
$Block = array(
|
||||||
'element' => array(
|
'element' => array(
|
||||||
@ -807,15 +809,13 @@ class Parsedown
|
|||||||
|
|
||||||
protected function blockSetextHeader($Line, array $Block = null)
|
protected function blockSetextHeader($Line, array $Block = null)
|
||||||
{
|
{
|
||||||
if ( ! isset($Block) or isset($Block['type']) or isset($Block['interrupted']))
|
if ( ! isset($Block) or $Block['type'] !== 'Paragraph' or isset($Block['interrupted']))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if ($Line['indent'] < 4 and chop(chop($Line['text'], ' '), $Line['text'][0]) === '')
|
||||||
chop(chop($Line['text'], ' '), $Line['text'][0]) === ''
|
{
|
||||||
and $Line['indent'] < 4
|
|
||||||
) {
|
|
||||||
$Block['element']['name'] = $Line['text'][0] === '=' ? 'h1' : 'h2';
|
$Block['element']['name'] = $Line['text'][0] === '=' ? 'h1' : 'h2';
|
||||||
|
|
||||||
return $Block;
|
return $Block;
|
||||||
@ -832,7 +832,7 @@ class Parsedown
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (preg_match('/^<[\/]?+(\w*)(?:[ ]*'.$this->regexHtmlAttribute.')*[ ]*(\/)?>/', $Line['text'], $matches))
|
if (preg_match('/^<[\/]?+(\w*)(?:[ ]*+'.$this->regexHtmlAttribute.')*+[ ]*+(\/)?>/', $Line['text'], $matches))
|
||||||
{
|
{
|
||||||
$element = strtolower($matches[1]);
|
$element = strtolower($matches[1]);
|
||||||
|
|
||||||
@ -860,7 +860,7 @@ class Parsedown
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$Block['element']['rawHtml'] .= "\n".$Line['body'];
|
$Block['element']['rawHtml'] .= "\n" . $Line['body'];
|
||||||
|
|
||||||
return $Block;
|
return $Block;
|
||||||
}
|
}
|
||||||
@ -870,24 +870,20 @@ class Parsedown
|
|||||||
|
|
||||||
protected function blockReference($Line)
|
protected function blockReference($Line)
|
||||||
{
|
{
|
||||||
if (preg_match('/^\[(.+?)\]:[ ]*<?(\S+?)>?(?:[ ]+["\'(](.+)["\')])?[ ]*$/', $Line['text'], $matches))
|
if (strpos($Line['text'], ']') !== false
|
||||||
{
|
and preg_match('/^\[(.+?)\]:[ ]*+<?(\S+?)>?(?:[ ]+["\'(](.+)["\')])?[ ]*+$/', $Line['text'], $matches)
|
||||||
|
) {
|
||||||
$id = strtolower($matches[1]);
|
$id = strtolower($matches[1]);
|
||||||
|
|
||||||
$Data = array(
|
$Data = array(
|
||||||
'url' => $matches[2],
|
'url' => $matches[2],
|
||||||
'title' => null,
|
'title' => isset($matches[3]) ? $matches[3] : null,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (isset($matches[3]))
|
|
||||||
{
|
|
||||||
$Data['title'] = $matches[3];
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->DefinitionData['Reference'][$id] = $Data;
|
$this->DefinitionData['Reference'][$id] = $Data;
|
||||||
|
|
||||||
$Block = array(
|
$Block = array(
|
||||||
'hidden' => true,
|
'element' => array(),
|
||||||
);
|
);
|
||||||
|
|
||||||
return $Block;
|
return $Block;
|
||||||
@ -899,7 +895,7 @@ class Parsedown
|
|||||||
|
|
||||||
protected function blockTable($Line, array $Block = null)
|
protected function blockTable($Line, array $Block = null)
|
||||||
{
|
{
|
||||||
if ( ! isset($Block) or isset($Block['type']) or isset($Block['interrupted']))
|
if ( ! isset($Block) or $Block['type'] !== 'Paragraph' or isset($Block['interrupted']))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -908,6 +904,7 @@ class Parsedown
|
|||||||
strpos($Block['element']['handler']['argument'], '|') === false
|
strpos($Block['element']['handler']['argument'], '|') === false
|
||||||
and strpos($Line['text'], '|') === false
|
and strpos($Line['text'], '|') === false
|
||||||
and strpos($Line['text'], ':') === false
|
and strpos($Line['text'], ':') === false
|
||||||
|
or strpos($Block['element']['handler']['argument'], "\n") !== false
|
||||||
) {
|
) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -984,7 +981,7 @@ class Parsedown
|
|||||||
$alignment = $alignments[$index];
|
$alignment = $alignments[$index];
|
||||||
|
|
||||||
$HeaderElement['attributes'] = array(
|
$HeaderElement['attributes'] = array(
|
||||||
'style' => 'text-align: '.$alignment.';',
|
'style' => "text-align: $alignment;",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1035,7 +1032,7 @@ class Parsedown
|
|||||||
$row = trim($row);
|
$row = trim($row);
|
||||||
$row = trim($row, '|');
|
$row = trim($row, '|');
|
||||||
|
|
||||||
preg_match_all('/(?:(\\\\[|])|[^|`]|`[^`]+`|`)+/', $row, $matches);
|
preg_match_all('/(?:(\\\\[|])|[^|`]|`[^`]++`|`)++/', $row, $matches);
|
||||||
|
|
||||||
$cells = array_slice($matches[0], 0, count($Block['alignments']));
|
$cells = array_slice($matches[0], 0, count($Block['alignments']));
|
||||||
|
|
||||||
@ -1055,7 +1052,7 @@ class Parsedown
|
|||||||
if (isset($Block['alignments'][$index]))
|
if (isset($Block['alignments'][$index]))
|
||||||
{
|
{
|
||||||
$Element['attributes'] = array(
|
$Element['attributes'] = array(
|
||||||
'style' => 'text-align: '.$Block['alignments'][$index].';',
|
'style' => 'text-align: ' . $Block['alignments'][$index] . ';',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1079,16 +1076,27 @@ class Parsedown
|
|||||||
|
|
||||||
protected function paragraph($Line)
|
protected function paragraph($Line)
|
||||||
{
|
{
|
||||||
$Block = array(
|
return array(
|
||||||
|
'type' => 'Paragraph',
|
||||||
'element' => array(
|
'element' => array(
|
||||||
'name' => 'p',
|
'name' => 'p',
|
||||||
'handler' => array(
|
'handler' => array(
|
||||||
'function' => 'lineElements',
|
'function' => 'lineElements',
|
||||||
'argument' => $Line['text'],
|
'argument' => $Line['text'],
|
||||||
'destination' => 'elements',
|
'destination' => 'elements',
|
||||||
)
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function paragraphContinue($Line, array $Block)
|
||||||
|
{
|
||||||
|
if (isset($Block['interrupted']))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$Block['element']['handler']['argument'] .= "\n".$Line['text'];
|
||||||
|
|
||||||
return $Block;
|
return $Block;
|
||||||
}
|
}
|
||||||
@ -1118,7 +1126,7 @@ class Parsedown
|
|||||||
# ~
|
# ~
|
||||||
#
|
#
|
||||||
|
|
||||||
public function line($text, $nonNestables=array())
|
public function line($text, $nonNestables = array())
|
||||||
{
|
{
|
||||||
return $this->elements($this->lineElements($text, $nonNestables));
|
return $this->elements($this->lineElements($text, $nonNestables));
|
||||||
}
|
}
|
||||||
@ -1127,13 +1135,18 @@ class Parsedown
|
|||||||
{
|
{
|
||||||
$Elements = array();
|
$Elements = array();
|
||||||
|
|
||||||
|
$nonNestables = (empty($nonNestables)
|
||||||
|
? array()
|
||||||
|
: array_combine($nonNestables, $nonNestables)
|
||||||
|
);
|
||||||
|
|
||||||
# $excerpt is based on the first occurrence of a marker
|
# $excerpt is based on the first occurrence of a marker
|
||||||
|
|
||||||
while ($excerpt = strpbrk($text, $this->inlineMarkerList))
|
while ($excerpt = strpbrk($text, $this->inlineMarkerList))
|
||||||
{
|
{
|
||||||
$marker = $excerpt[0];
|
$marker = $excerpt[0];
|
||||||
|
|
||||||
$markerPosition = strpos($text, $marker);
|
$markerPosition = strlen($text) - strlen($excerpt);
|
||||||
|
|
||||||
$Excerpt = array('text' => $excerpt, 'context' => $text);
|
$Excerpt = array('text' => $excerpt, 'context' => $text);
|
||||||
|
|
||||||
@ -1141,12 +1154,12 @@ class Parsedown
|
|||||||
{
|
{
|
||||||
# check to see if the current inline type is nestable in the current context
|
# check to see if the current inline type is nestable in the current context
|
||||||
|
|
||||||
if ( ! empty($nonNestables) and in_array($inlineType, $nonNestables))
|
if (isset($nonNestables[$inlineType]))
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$Inline = $this->{'inline'.$inlineType}($Excerpt);
|
$Inline = $this->{"inline$inlineType"}($Excerpt);
|
||||||
|
|
||||||
if ( ! isset($Inline))
|
if ( ! isset($Inline))
|
||||||
{
|
{
|
||||||
@ -1169,10 +1182,11 @@ class Parsedown
|
|||||||
|
|
||||||
# cause the new element to 'inherit' our non nestables
|
# cause the new element to 'inherit' our non nestables
|
||||||
|
|
||||||
foreach ($nonNestables as $non_nestable)
|
|
||||||
{
|
$Inline['element']['nonNestables'] = isset($Inline['element']['nonNestables'])
|
||||||
$Inline['element']['nonNestables'][] = $non_nestable;
|
? array_merge($Inline['element']['nonNestables'], $nonNestables)
|
||||||
}
|
: $nonNestables
|
||||||
|
;
|
||||||
|
|
||||||
# the text that comes before the inline
|
# the text that comes before the inline
|
||||||
$unmarkedText = substr($text, 0, $Inline['position']);
|
$unmarkedText = substr($text, 0, $Inline['position']);
|
||||||
@ -1182,7 +1196,7 @@ class Parsedown
|
|||||||
$Elements[] = $InlineText['element'];
|
$Elements[] = $InlineText['element'];
|
||||||
|
|
||||||
# compile the inline
|
# compile the inline
|
||||||
$Elements[] = $Inline['element'];
|
$Elements[] = $this->extractElement($Inline);
|
||||||
|
|
||||||
# remove the examined text
|
# remove the examined text
|
||||||
$text = substr($text, $Inline['position'] + $Inline['extent']);
|
$text = substr($text, $Inline['position'] + $Inline['extent']);
|
||||||
@ -1203,14 +1217,13 @@ class Parsedown
|
|||||||
$InlineText = $this->inlineText($text);
|
$InlineText = $this->inlineText($text);
|
||||||
$Elements[] = $InlineText['element'];
|
$Elements[] = $InlineText['element'];
|
||||||
|
|
||||||
$Elements = array_map(
|
foreach ($Elements as &$Element)
|
||||||
function ($Element) {
|
{
|
||||||
$Element['autobreak'] = isset($Element['autobreak'])
|
if ( ! isset($Element['autobreak']))
|
||||||
? $Element['autobreak'] : false;
|
{
|
||||||
return $Element;
|
$Element['autobreak'] = false;
|
||||||
},
|
}
|
||||||
$Elements
|
}
|
||||||
);
|
|
||||||
|
|
||||||
return $Elements;
|
return $Elements;
|
||||||
}
|
}
|
||||||
@ -1223,33 +1236,17 @@ class Parsedown
|
|||||||
{
|
{
|
||||||
$Inline = array(
|
$Inline = array(
|
||||||
'extent' => strlen($text),
|
'extent' => strlen($text),
|
||||||
'element' => array(
|
'element' => array(),
|
||||||
'elements' => array(),
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($this->breaksEnabled)
|
|
||||||
{
|
|
||||||
$Inline['element']['elements'] = self::pregReplaceElements(
|
$Inline['element']['elements'] = self::pregReplaceElements(
|
||||||
'/[ ]*\n/',
|
$this->breaksEnabled ? '/[ ]*+\n/' : '/(?:[ ]*+\\\\|[ ]{2,}+)\n/',
|
||||||
array(
|
array(
|
||||||
array('name' => 'br'),
|
array('name' => 'br'),
|
||||||
array('text' => "\n"),
|
array('text' => "\n"),
|
||||||
),
|
),
|
||||||
$text
|
$text
|
||||||
);
|
);
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$Inline['element']['elements'] = self::pregReplaceElements(
|
|
||||||
'/(?:[ ][ ]+|[ ]*\\\\)\n/',
|
|
||||||
array(
|
|
||||||
array('name' => 'br'),
|
|
||||||
array('text' => "\n"),
|
|
||||||
),
|
|
||||||
$text
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $Inline;
|
return $Inline;
|
||||||
}
|
}
|
||||||
@ -1258,10 +1255,10 @@ class Parsedown
|
|||||||
{
|
{
|
||||||
$marker = $Excerpt['text'][0];
|
$marker = $Excerpt['text'][0];
|
||||||
|
|
||||||
if (preg_match('/^('.$marker.'+)[ ]*(.+?)[ ]*(?<!'.$marker.')\1(?!'.$marker.')/s', $Excerpt['text'], $matches))
|
if (preg_match('/^(['.$marker.']++)[ ]*+(.+?)[ ]*+(?<!['.$marker.'])\1(?!'.$marker.')/s', $Excerpt['text'], $matches))
|
||||||
{
|
{
|
||||||
$text = $matches[2];
|
$text = $matches[2];
|
||||||
$text = preg_replace("/[ ]*\n/", ' ', $text);
|
$text = preg_replace('/[ ]*+\n/', ' ', $text);
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
'extent' => strlen($matches[0]),
|
'extent' => strlen($matches[0]),
|
||||||
@ -1287,7 +1284,7 @@ class Parsedown
|
|||||||
|
|
||||||
if ( ! isset($matches[2]))
|
if ( ! isset($matches[2]))
|
||||||
{
|
{
|
||||||
$url = 'mailto:' . $url;
|
$url = "mailto:$url";
|
||||||
}
|
}
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
@ -1417,7 +1414,7 @@ class Parsedown
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (preg_match('/^[(]\s*+((?:[^ ()]++|[(][^ )]+[)])++)(?:[ ]+("[^"]*"|\'[^\']*\'))?\s*[)]/', $remainder, $matches))
|
if (preg_match('/^[(]\s*+((?:[^ ()]++|[(][^ )]+[)])++)(?:[ ]+("[^"]*+"|\'[^\']*+\'))?\s*+[)]/', $remainder, $matches))
|
||||||
{
|
{
|
||||||
$Element['attributes']['href'] = $matches[1];
|
$Element['attributes']['href'] = $matches[1];
|
||||||
|
|
||||||
@ -1466,7 +1463,7 @@ class Parsedown
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($Excerpt['text'][1] === '/' and preg_match('/^<\/\w[\w-]*[ ]*>/s', $Excerpt['text'], $matches))
|
if ($Excerpt['text'][1] === '/' and preg_match('/^<\/\w[\w-]*+[ ]*+>/s', $Excerpt['text'], $matches))
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
'element' => array('rawHtml' => $matches[0]),
|
'element' => array('rawHtml' => $matches[0]),
|
||||||
@ -1474,7 +1471,7 @@ class Parsedown
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($Excerpt['text'][1] === '!' and preg_match('/^<!---?[^>-](?:-?[^-])*-->/s', $Excerpt['text'], $matches))
|
if ($Excerpt['text'][1] === '!' and preg_match('/^<!---?[^>-](?:-?+[^-])*-->/s', $Excerpt['text'], $matches))
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
'element' => array('rawHtml' => $matches[0]),
|
'element' => array('rawHtml' => $matches[0]),
|
||||||
@ -1482,7 +1479,7 @@ class Parsedown
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($Excerpt['text'][1] !== ' ' and preg_match('/^<\w[\w-]*(?:[ ]*'.$this->regexHtmlAttribute.')*[ ]*\/?>/s', $Excerpt['text'], $matches))
|
if ($Excerpt['text'][1] !== ' ' and preg_match('/^<\w[\w-]*+(?:[ ]*+'.$this->regexHtmlAttribute.')*+[ ]*+\/?>/s', $Excerpt['text'], $matches))
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
'element' => array('rawHtml' => $matches[0]),
|
'element' => array('rawHtml' => $matches[0]),
|
||||||
@ -1493,10 +1490,11 @@ class Parsedown
|
|||||||
|
|
||||||
protected function inlineSpecialCharacter($Excerpt)
|
protected function inlineSpecialCharacter($Excerpt)
|
||||||
{
|
{
|
||||||
if (preg_match('/^&(#?+[0-9a-zA-Z]++);/', $Excerpt['text'], $matches))
|
if ($Excerpt['text'][1] !== ' ' and strpos($Excerpt['text'], ';') !== false
|
||||||
{
|
and preg_match('/^&(#?+[0-9a-zA-Z]++);/', $Excerpt['text'], $matches)
|
||||||
|
) {
|
||||||
return array(
|
return array(
|
||||||
'element' => array('rawHtml' => '&'.$matches[1].';'),
|
'element' => array('rawHtml' => '&' . $matches[1] . ';'),
|
||||||
'extent' => strlen($matches[0]),
|
'extent' => strlen($matches[0]),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -1534,8 +1532,9 @@ class Parsedown
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (preg_match('/\bhttps?:[\/]{2}[^\s<]+\b\/*/ui', $Excerpt['context'], $matches, PREG_OFFSET_CAPTURE))
|
if (strpos($Excerpt['context'], 'http') !== false
|
||||||
{
|
and preg_match('/\bhttps?+:[\/]{2}[^\s<]+\b\/*+/ui', $Excerpt['context'], $matches, PREG_OFFSET_CAPTURE)
|
||||||
|
) {
|
||||||
$url = $matches[0][0];
|
$url = $matches[0][0];
|
||||||
|
|
||||||
$Inline = array(
|
$Inline = array(
|
||||||
@ -1556,7 +1555,7 @@ class Parsedown
|
|||||||
|
|
||||||
protected function inlineUrlTag($Excerpt)
|
protected function inlineUrlTag($Excerpt)
|
||||||
{
|
{
|
||||||
if (strpos($Excerpt['text'], '>') !== false and preg_match('/^<(\w+:\/{2}[^ >]+)>/i', $Excerpt['text'], $matches))
|
if (strpos($Excerpt['text'], '>') !== false and preg_match('/^<(\w++:\/{2}[^ >]++)>/i', $Excerpt['text'], $matches))
|
||||||
{
|
{
|
||||||
$url = $matches[1];
|
$url = $matches[1];
|
||||||
|
|
||||||
@ -1598,6 +1597,7 @@ class Parsedown
|
|||||||
{
|
{
|
||||||
$function = $Element['handler'];
|
$function = $Element['handler'];
|
||||||
$argument = $Element['text'];
|
$argument = $Element['text'];
|
||||||
|
unset($Element['text']);
|
||||||
$destination = 'rawHtml';
|
$destination = 'rawHtml';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -1613,9 +1613,9 @@ class Parsedown
|
|||||||
{
|
{
|
||||||
$Element = $this->handle($Element);
|
$Element = $this->handle($Element);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
unset($Element['handler']);
|
unset($Element['handler']);
|
||||||
|
}
|
||||||
|
|
||||||
return $Element;
|
return $Element;
|
||||||
}
|
}
|
||||||
@ -1632,6 +1632,8 @@ class Parsedown
|
|||||||
|
|
||||||
protected function elementApplyRecursive($closure, array $Element)
|
protected function elementApplyRecursive($closure, array $Element)
|
||||||
{
|
{
|
||||||
|
$Element = call_user_func($closure, $Element);
|
||||||
|
|
||||||
if (isset($Element['elements']))
|
if (isset($Element['elements']))
|
||||||
{
|
{
|
||||||
$Element['elements'] = $this->elementsApplyRecursive($closure, $Element['elements']);
|
$Element['elements'] = $this->elementsApplyRecursive($closure, $Element['elements']);
|
||||||
@ -1641,6 +1643,20 @@ class Parsedown
|
|||||||
$Element['element'] = $this->elementApplyRecursive($closure, $Element['element']);
|
$Element['element'] = $this->elementApplyRecursive($closure, $Element['element']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $Element;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function elementApplyRecursiveDepthFirst($closure, array $Element)
|
||||||
|
{
|
||||||
|
if (isset($Element['elements']))
|
||||||
|
{
|
||||||
|
$Element['elements'] = $this->elementsApplyRecursiveDepthFirst($closure, $Element['elements']);
|
||||||
|
}
|
||||||
|
elseif (isset($Element['element']))
|
||||||
|
{
|
||||||
|
$Element['element'] = $this->elementsApplyRecursiveDepthFirst($closure, $Element['element']);
|
||||||
|
}
|
||||||
|
|
||||||
$Element = call_user_func($closure, $Element);
|
$Element = call_user_func($closure, $Element);
|
||||||
|
|
||||||
return $Element;
|
return $Element;
|
||||||
@ -1648,14 +1664,22 @@ class Parsedown
|
|||||||
|
|
||||||
protected function elementsApplyRecursive($closure, array $Elements)
|
protected function elementsApplyRecursive($closure, array $Elements)
|
||||||
{
|
{
|
||||||
$newElements = array();
|
foreach ($Elements as &$Element)
|
||||||
|
|
||||||
foreach ($Elements as $Element)
|
|
||||||
{
|
{
|
||||||
$newElements[] = $this->elementApplyRecursive($closure, $Element);
|
$Element = $this->elementApplyRecursive($closure, $Element);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $newElements;
|
return $Elements;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function elementsApplyRecursiveDepthFirst($closure, array $Elements)
|
||||||
|
{
|
||||||
|
foreach ($Elements as &$Element)
|
||||||
|
{
|
||||||
|
$Element = $this->elementApplyRecursiveDepthFirst($closure, $Element);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $Elements;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function element(array $Element)
|
protected function element(array $Element)
|
||||||
@ -1674,7 +1698,7 @@ class Parsedown
|
|||||||
|
|
||||||
if ($hasName)
|
if ($hasName)
|
||||||
{
|
{
|
||||||
$markup .= '<'.$Element['name'];
|
$markup .= '<' . $Element['name'];
|
||||||
|
|
||||||
if (isset($Element['attributes']))
|
if (isset($Element['attributes']))
|
||||||
{
|
{
|
||||||
@ -1685,7 +1709,7 @@ class Parsedown
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$markup .= ' '.$name.'="'.self::escape($value).'"';
|
$markup .= " $name=\"".self::escape($value).'"';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1732,7 +1756,7 @@ class Parsedown
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$markup .= $hasName ? '</'.$Element['name'].'>' : '';
|
$markup .= $hasName ? '</' . $Element['name'] . '>' : '';
|
||||||
}
|
}
|
||||||
elseif ($hasName)
|
elseif ($hasName)
|
||||||
{
|
{
|
||||||
@ -1750,8 +1774,13 @@ class Parsedown
|
|||||||
|
|
||||||
foreach ($Elements as $Element)
|
foreach ($Elements as $Element)
|
||||||
{
|
{
|
||||||
$autoBreakNext = (isset($Element['autobreak']) && $Element['autobreak']
|
if (empty($Element))
|
||||||
|| ! isset($Element['autobreak']) && isset($Element['name'])
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$autoBreakNext = (isset($Element['autobreak'])
|
||||||
|
? $Element['autobreak'] : isset($Element['name'])
|
||||||
);
|
);
|
||||||
// (autobreak === false) covers both sides of an element
|
// (autobreak === false) covers both sides of an element
|
||||||
$autoBreak = !$autoBreak ? $autoBreak : $autoBreakNext;
|
$autoBreak = !$autoBreak ? $autoBreak : $autoBreakNext;
|
||||||
@ -1928,12 +1957,12 @@ class Parsedown
|
|||||||
# Read-Only
|
# Read-Only
|
||||||
|
|
||||||
protected $specialCharacters = array(
|
protected $specialCharacters = array(
|
||||||
'\\', '`', '*', '_', '{', '}', '[', ']', '(', ')', '>', '#', '+', '-', '.', '!', '|',
|
'\\', '`', '*', '_', '{', '}', '[', ']', '(', ')', '>', '#', '+', '-', '.', '!', '|', '~'
|
||||||
);
|
);
|
||||||
|
|
||||||
protected $StrongRegex = array(
|
protected $StrongRegex = array(
|
||||||
'*' => '/^[*]{2}((?:\\\\\*|[^*]|[*][^*]*[*])+?)[*]{2}(?![*])/s',
|
'*' => '/^[*]{2}((?:\\\\\*|[^*]|[*][^*]*+[*])+?)[*]{2}(?![*])/s',
|
||||||
'_' => '/^__((?:\\\\_|[^_]|_[^_]*_)+?)__(?!_)/us',
|
'_' => '/^__((?:\\\\_|[^_]|_[^_]*+_)+?)__(?!_)/us',
|
||||||
);
|
);
|
||||||
|
|
||||||
protected $EmRegex = array(
|
protected $EmRegex = array(
|
||||||
@ -1941,7 +1970,7 @@ class Parsedown
|
|||||||
'_' => '/^_((?:\\\\_|[^_]|__[^_]*__)+?)_(?!_)\b/us',
|
'_' => '/^_((?:\\\\_|[^_]|__[^_]*__)+?)_(?!_)\b/us',
|
||||||
);
|
);
|
||||||
|
|
||||||
protected $regexHtmlAttribute = '[a-zA-Z_:][\w:.-]*(?:\s*=\s*(?:[^"\'=<>`\s]+|"[^"]*"|\'[^\']*\'))?';
|
protected $regexHtmlAttribute = '[a-zA-Z_:][\w:.-]*+(?:\s*+=\s*+(?:[^"\'=<>`\s]+|"[^"]*+"|\'[^\']*+\'))?+';
|
||||||
|
|
||||||
protected $voidElements = array(
|
protected $voidElements = array(
|
||||||
'area', 'base', 'br', 'col', 'command', 'embed', 'hr', 'img', 'input', 'link', 'meta', 'param', 'source',
|
'area', 'base', 'br', 'col', 'command', 'embed', 'hr', 'img', 'input', 'link', 'meta', 'param', 'source',
|
||||||
|
@ -52,7 +52,6 @@ class ParsedownTest extends TestCase
|
|||||||
|
|
||||||
$this->Parsedown->setSafeMode(substr($test, 0, 3) === 'xss');
|
$this->Parsedown->setSafeMode(substr($test, 0, 3) === 'xss');
|
||||||
$this->Parsedown->setStrictMode(substr($test, 0, 6) === 'strict');
|
$this->Parsedown->setStrictMode(substr($test, 0, 6) === 'strict');
|
||||||
$this->Parsedown->setLiteralBreaks(substr($test, 0, 14) === 'literal_breaks');
|
|
||||||
|
|
||||||
$actualMarkup = $this->Parsedown->text($markdown);
|
$actualMarkup = $this->Parsedown->text($markdown);
|
||||||
|
|
||||||
|
@ -6,3 +6,8 @@ echo $message;</code></pre>
|
|||||||
<pre><code>> not a quote
|
<pre><code>> not a quote
|
||||||
- not a list item
|
- not a list item
|
||||||
[not a reference]: http://foo.com</code></pre>
|
[not a reference]: http://foo.com</code></pre>
|
||||||
|
<hr />
|
||||||
|
<pre><code>foo
|
||||||
|
|
||||||
|
|
||||||
|
bar</code></pre>
|
@ -8,3 +8,10 @@
|
|||||||
> not a quote
|
> not a quote
|
||||||
- not a list item
|
- not a list item
|
||||||
[not a reference]: http://foo.com
|
[not a reference]: http://foo.com
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
foo
|
||||||
|
|
||||||
|
|
||||||
|
bar
|
@ -12,3 +12,7 @@ echo "Hello World";
|
|||||||
<pre><code>the following isn't quite enough to close
|
<pre><code>the following isn't quite enough to close
|
||||||
```
|
```
|
||||||
still a fenced code block</code></pre>
|
still a fenced code block</code></pre>
|
||||||
|
<pre><code>foo
|
||||||
|
|
||||||
|
|
||||||
|
bar</code></pre>
|
@ -29,3 +29,10 @@ the following isn't quite enough to close
|
|||||||
```
|
```
|
||||||
still a fenced code block
|
still a fenced code block
|
||||||
````
|
````
|
||||||
|
|
||||||
|
```
|
||||||
|
foo
|
||||||
|
|
||||||
|
|
||||||
|
bar
|
||||||
|
```
|
@ -1,6 +0,0 @@
|
|||||||
<p>first line
|
|
||||||
<br />
|
|
||||||
<br />
|
|
||||||
<br />
|
|
||||||
<br />
|
|
||||||
sixth line</p>
|
|
@ -1,6 +0,0 @@
|
|||||||
first line
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
sixth line
|
|
@ -67,3 +67,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
<hr />
|
||||||
|
<p>Not a table, we haven't ended the paragraph:
|
||||||
|
header 1 | header 2
|
||||||
|
-------- | --------
|
||||||
|
cell 1.1 | cell 1.2
|
||||||
|
cell 2.1 | cell 2.2</p>
|
@ -23,3 +23,11 @@ header 1
|
|||||||
-------|
|
-------|
|
||||||
cell 1.1
|
cell 1.1
|
||||||
cell 2.1
|
cell 2.1
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Not a table, we haven't ended the paragraph:
|
||||||
|
header 1 | header 2
|
||||||
|
-------- | --------
|
||||||
|
cell 1.1 | cell 1.2
|
||||||
|
cell 2.1 | cell 2.2
|
@ -1,3 +1,4 @@
|
|||||||
<p><del>strikethrough</del></p>
|
<p><del>strikethrough</del></p>
|
||||||
<p>here's <del>one</del> followed by <del>another one</del></p>
|
<p>here's <del>one</del> followed by <del>another one</del></p>
|
||||||
<p>~~ this ~~ is not one neither is ~this~</p>
|
<p>~~ this ~~ is not one neither is ~this~</p>
|
||||||
|
<p>escaped ~~this~~</p>
|
@ -3,3 +3,5 @@
|
|||||||
here's ~~one~~ followed by ~~another one~~
|
here's ~~one~~ followed by ~~another one~~
|
||||||
|
|
||||||
~~ this ~~ is not one neither is ~this~
|
~~ this ~~ is not one neither is ~this~
|
||||||
|
|
||||||
|
escaped \~\~this\~\~
|
Reference in New Issue
Block a user