mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
improve order of methods
This commit is contained in:
parent
7ff0f97811
commit
e5e8d02934
373
Parsedown.php
373
Parsedown.php
@ -963,64 +963,6 @@ class Parsedown
|
||||
return $Block;
|
||||
}
|
||||
|
||||
#
|
||||
# ~
|
||||
#
|
||||
|
||||
protected function element(array $Element)
|
||||
{
|
||||
$markup = '<'.$Element['name'];
|
||||
|
||||
if (isset($Element['attributes']))
|
||||
{
|
||||
foreach ($Element['attributes'] as $name => $value)
|
||||
{
|
||||
if ($value === null)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
$markup .= ' '.$name.'="'.$value.'"';
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($Element['text']))
|
||||
{
|
||||
$markup .= '>';
|
||||
|
||||
if (isset($Element['handler']))
|
||||
{
|
||||
$markup .= $this->$Element['handler']($Element['text']);
|
||||
}
|
||||
else
|
||||
{
|
||||
$markup .= $Element['text'];
|
||||
}
|
||||
|
||||
$markup .= '</'.$Element['name'].'>';
|
||||
}
|
||||
else
|
||||
{
|
||||
$markup .= ' />';
|
||||
}
|
||||
|
||||
return $markup;
|
||||
}
|
||||
|
||||
protected function elements(array $Elements)
|
||||
{
|
||||
$markup = '';
|
||||
|
||||
foreach ($Elements as $Element)
|
||||
{
|
||||
$markup .= "\n" . $this->element($Element);
|
||||
}
|
||||
|
||||
$markup .= "\n";
|
||||
|
||||
return $markup;
|
||||
}
|
||||
|
||||
#
|
||||
# Inline Elements
|
||||
#
|
||||
@ -1112,75 +1054,21 @@ class Parsedown
|
||||
}
|
||||
}
|
||||
|
||||
protected function inlineStrikethrough($excerpt)
|
||||
protected function inlineCode($excerpt)
|
||||
{
|
||||
if ( ! isset($excerpt[1]))
|
||||
{
|
||||
return;
|
||||
}
|
||||
$marker = $excerpt[0];
|
||||
|
||||
if ($excerpt[1] === '~' and preg_match('/^~~(?=\S)(.+?)(?<=\S)~~/', $excerpt, $matches))
|
||||
if (preg_match('/^('.$marker.'+)[ ]*(.+?)[ ]*(?<!'.$marker.')\1(?!'.$marker.')/s', $excerpt, $matches))
|
||||
{
|
||||
return array(
|
||||
'extent' => strlen($matches[0]),
|
||||
'element' => array(
|
||||
'name' => 'del',
|
||||
'text' => $matches[1],
|
||||
'handler' => 'line',
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
protected function inlineEscapeSequence($excerpt)
|
||||
{
|
||||
if (isset($excerpt[1]) and in_array($excerpt[1], $this->specialCharacters))
|
||||
{
|
||||
return array(
|
||||
'markup' => $excerpt[1],
|
||||
'extent' => 2,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
protected function inlineLessThan()
|
||||
{
|
||||
return array(
|
||||
'markup' => '<',
|
||||
'extent' => 1,
|
||||
);
|
||||
}
|
||||
|
||||
protected function inlineGreaterThan()
|
||||
{
|
||||
return array(
|
||||
'markup' => '>',
|
||||
'extent' => 1,
|
||||
);
|
||||
}
|
||||
|
||||
protected function inlineQuotationMark()
|
||||
{
|
||||
return array(
|
||||
'markup' => '"',
|
||||
'extent' => 1,
|
||||
);
|
||||
}
|
||||
|
||||
protected function inlineUrl($excerpt)
|
||||
{
|
||||
if (strpos($excerpt, '>') !== false and preg_match('/^<(\w+:\/{2}[^ >]+)>/i', $excerpt, $matches))
|
||||
{
|
||||
$url = str_replace(array('&', '<'), array('&', '<'), $matches[1]);
|
||||
$text = $matches[2];
|
||||
$text = htmlspecialchars($text, ENT_NOQUOTES, 'UTF-8');
|
||||
$text = preg_replace("/[ ]*\n/", ' ', $text);
|
||||
|
||||
return array(
|
||||
'extent' => strlen($matches[0]),
|
||||
'element' => array(
|
||||
'name' => 'a',
|
||||
'text' => $url,
|
||||
'attributes' => array(
|
||||
'href' => $url,
|
||||
),
|
||||
'name' => 'code',
|
||||
'text' => $text,
|
||||
),
|
||||
);
|
||||
}
|
||||
@ -1210,56 +1098,55 @@ class Parsedown
|
||||
}
|
||||
}
|
||||
|
||||
protected function inlineMarkup($excerpt)
|
||||
protected function inlineEmphasis($excerpt)
|
||||
{
|
||||
if ($this->markupEscaped or strpos($excerpt, '>') === false)
|
||||
if ( ! isset($excerpt[1]))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ($excerpt[1] === '/' and preg_match('/^<\/\w*[ ]*>/s', $excerpt, $matches))
|
||||
{
|
||||
return array(
|
||||
'markup' => $matches[0],
|
||||
'extent' => strlen($matches[0]),
|
||||
);
|
||||
}
|
||||
|
||||
if ($excerpt[1] === '!' and preg_match('/^<!---?[^>-](?:-?[^-])*-->/s', $excerpt, $matches))
|
||||
{
|
||||
return array(
|
||||
'markup' => $matches[0],
|
||||
'extent' => strlen($matches[0]),
|
||||
);
|
||||
}
|
||||
|
||||
if ($excerpt[1] !== ' ' and preg_match('/^<\w*(?:[ ]*'.$this->regexHtmlAttribute.')*[ ]*\/?>/s', $excerpt, $matches))
|
||||
{
|
||||
return array(
|
||||
'markup' => $matches[0],
|
||||
'extent' => strlen($matches[0]),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
protected function inlineCode($excerpt)
|
||||
{
|
||||
$marker = $excerpt[0];
|
||||
|
||||
if (preg_match('/^('.$marker.'+)[ ]*(.+?)[ ]*(?<!'.$marker.')\1(?!'.$marker.')/s', $excerpt, $matches))
|
||||
if ($excerpt[1] === $marker and preg_match($this->StrongRegex[$marker], $excerpt, $matches))
|
||||
{
|
||||
$text = $matches[2];
|
||||
$text = htmlspecialchars($text, ENT_NOQUOTES, 'UTF-8');
|
||||
$text = preg_replace("/[ ]*\n/", ' ', $text);
|
||||
$emphasis = 'strong';
|
||||
}
|
||||
elseif (preg_match($this->EmRegex[$marker], $excerpt, $matches))
|
||||
{
|
||||
$emphasis = 'em';
|
||||
}
|
||||
else
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
return array(
|
||||
'extent' => strlen($matches[0]),
|
||||
'element' => array(
|
||||
'name' => 'code',
|
||||
'text' => $text,
|
||||
'name' => $emphasis,
|
||||
'handler' => 'line',
|
||||
'text' => $matches[1],
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
protected function inlineEscapeSequence($excerpt)
|
||||
{
|
||||
if (isset($excerpt[1]) and in_array($excerpt[1], $this->specialCharacters))
|
||||
{
|
||||
return array(
|
||||
'markup' => $excerpt[1],
|
||||
'extent' => 2,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
protected function inlineGreaterThan()
|
||||
{
|
||||
return array(
|
||||
'markup' => '>',
|
||||
'extent' => 1,
|
||||
);
|
||||
}
|
||||
|
||||
protected function inlineImage($excerpt)
|
||||
@ -1296,6 +1183,14 @@ class Parsedown
|
||||
return $Inline;
|
||||
}
|
||||
|
||||
protected function inlineLessThan()
|
||||
{
|
||||
return array(
|
||||
'markup' => '<',
|
||||
'extent' => 1,
|
||||
);
|
||||
}
|
||||
|
||||
protected function inlineLink($excerpt)
|
||||
{
|
||||
$Element = array(
|
||||
@ -1369,37 +1264,84 @@ class Parsedown
|
||||
);
|
||||
}
|
||||
|
||||
protected function inlineEmphasis($excerpt)
|
||||
protected function inlineMarkup($excerpt)
|
||||
{
|
||||
if ($this->markupEscaped or strpos($excerpt, '>') === false)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if ($excerpt[1] === '/' and preg_match('/^<\/\w*[ ]*>/s', $excerpt, $matches))
|
||||
{
|
||||
return array(
|
||||
'markup' => $matches[0],
|
||||
'extent' => strlen($matches[0]),
|
||||
);
|
||||
}
|
||||
|
||||
if ($excerpt[1] === '!' and preg_match('/^<!---?[^>-](?:-?[^-])*-->/s', $excerpt, $matches))
|
||||
{
|
||||
return array(
|
||||
'markup' => $matches[0],
|
||||
'extent' => strlen($matches[0]),
|
||||
);
|
||||
}
|
||||
|
||||
if ($excerpt[1] !== ' ' and preg_match('/^<\w*(?:[ ]*'.$this->regexHtmlAttribute.')*[ ]*\/?>/s', $excerpt, $matches))
|
||||
{
|
||||
return array(
|
||||
'markup' => $matches[0],
|
||||
'extent' => strlen($matches[0]),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
protected function inlineQuotationMark()
|
||||
{
|
||||
return array(
|
||||
'markup' => '"',
|
||||
'extent' => 1,
|
||||
);
|
||||
}
|
||||
|
||||
protected function inlineStrikethrough($excerpt)
|
||||
{
|
||||
if ( ! isset($excerpt[1]))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
$marker = $excerpt[0];
|
||||
if ($excerpt[1] === '~' and preg_match('/^~~(?=\S)(.+?)(?<=\S)~~/', $excerpt, $matches))
|
||||
{
|
||||
return array(
|
||||
'extent' => strlen($matches[0]),
|
||||
'element' => array(
|
||||
'name' => 'del',
|
||||
'text' => $matches[1],
|
||||
'handler' => 'line',
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if ($excerpt[1] === $marker and preg_match($this->StrongRegex[$marker], $excerpt, $matches))
|
||||
protected function inlineUrl($excerpt)
|
||||
{
|
||||
$emphasis = 'strong';
|
||||
}
|
||||
elseif (preg_match($this->EmRegex[$marker], $excerpt, $matches))
|
||||
if (strpos($excerpt, '>') !== false and preg_match('/^<(\w+:\/{2}[^ >]+)>/i', $excerpt, $matches))
|
||||
{
|
||||
$emphasis = 'em';
|
||||
}
|
||||
else
|
||||
{
|
||||
return;
|
||||
}
|
||||
$url = str_replace(array('&', '<'), array('&', '<'), $matches[1]);
|
||||
|
||||
return array(
|
||||
'extent' => strlen($matches[0]),
|
||||
'element' => array(
|
||||
'name' => $emphasis,
|
||||
'handler' => 'line',
|
||||
'text' => $matches[1],
|
||||
'name' => 'a',
|
||||
'text' => $url,
|
||||
'attributes' => array(
|
||||
'href' => $url,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
#
|
||||
# ~
|
||||
@ -1421,6 +1363,8 @@ class Parsedown
|
||||
return $text;
|
||||
}
|
||||
|
||||
# ~
|
||||
|
||||
protected function unmarkedInlineBreak($text)
|
||||
{
|
||||
if ($this->breaksEnabled)
|
||||
@ -1466,9 +1410,65 @@ class Parsedown
|
||||
}
|
||||
|
||||
#
|
||||
# ~
|
||||
# Handlers
|
||||
#
|
||||
|
||||
protected function element(array $Element)
|
||||
{
|
||||
$markup = '<'.$Element['name'];
|
||||
|
||||
if (isset($Element['attributes']))
|
||||
{
|
||||
foreach ($Element['attributes'] as $name => $value)
|
||||
{
|
||||
if ($value === null)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
$markup .= ' '.$name.'="'.$value.'"';
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($Element['text']))
|
||||
{
|
||||
$markup .= '>';
|
||||
|
||||
if (isset($Element['handler']))
|
||||
{
|
||||
$markup .= $this->$Element['handler']($Element['text']);
|
||||
}
|
||||
else
|
||||
{
|
||||
$markup .= $Element['text'];
|
||||
}
|
||||
|
||||
$markup .= '</'.$Element['name'].'>';
|
||||
}
|
||||
else
|
||||
{
|
||||
$markup .= ' />';
|
||||
}
|
||||
|
||||
return $markup;
|
||||
}
|
||||
|
||||
protected function elements(array $Elements)
|
||||
{
|
||||
$markup = '';
|
||||
|
||||
foreach ($Elements as $Element)
|
||||
{
|
||||
$markup .= "\n" . $this->element($Element);
|
||||
}
|
||||
|
||||
$markup .= "\n";
|
||||
|
||||
return $markup;
|
||||
}
|
||||
|
||||
# ~
|
||||
|
||||
protected function li($lines)
|
||||
{
|
||||
$markup = $this->lines($lines);
|
||||
@ -1489,7 +1489,18 @@ class Parsedown
|
||||
}
|
||||
|
||||
#
|
||||
# Multiton
|
||||
# Deprecated Methods
|
||||
#
|
||||
|
||||
function parse($text)
|
||||
{
|
||||
$markup = $this->text($text);
|
||||
|
||||
return $markup;
|
||||
}
|
||||
|
||||
#
|
||||
# Static Methods
|
||||
#
|
||||
|
||||
static function instance($name = 'default')
|
||||
@ -1508,22 +1519,6 @@ class Parsedown
|
||||
|
||||
private static $instances = array();
|
||||
|
||||
#
|
||||
# Deprecated Methods
|
||||
#
|
||||
|
||||
/**
|
||||
* @deprecated in favor of "text"
|
||||
* @param $text
|
||||
* @return string
|
||||
*/
|
||||
function parse($text)
|
||||
{
|
||||
$markup = $this->text($text);
|
||||
|
||||
return $markup;
|
||||
}
|
||||
|
||||
#
|
||||
# Fields
|
||||
#
|
||||
@ -1531,7 +1526,7 @@ class Parsedown
|
||||
protected $DefinitionData;
|
||||
|
||||
#
|
||||
# Read-only
|
||||
# Read-Only
|
||||
|
||||
protected $specialCharacters = array(
|
||||
'\\', '`', '*', '_', '{', '}', '[', ']', '(', ')', '>', '#', '+', '-', '.', '!', '|',
|
||||
|
Loading…
Reference in New Issue
Block a user