mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
strip trailing spaces
This commit is contained in:
parent
4403fe4d96
commit
689ef24cc5
480
Parsedown.php
480
Parsedown.php
@ -1,172 +1,172 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# Parsedown
|
# Parsedown
|
||||||
# http://parsedown.org
|
# http://parsedown.org
|
||||||
#
|
#
|
||||||
# (c) Emanuil Rusev
|
# (c) Emanuil Rusev
|
||||||
# http://erusev.com
|
# http://erusev.com
|
||||||
#
|
#
|
||||||
# For the full license information, please view the LICENSE file that was
|
# For the full license information, please view the LICENSE file that was
|
||||||
# distributed with this source code.
|
# distributed with this source code.
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
class Parsedown
|
class Parsedown
|
||||||
{
|
{
|
||||||
#
|
#
|
||||||
# Multiton (http://en.wikipedia.org/wiki/Multiton_pattern)
|
# Multiton (http://en.wikipedia.org/wiki/Multiton_pattern)
|
||||||
#
|
#
|
||||||
|
|
||||||
static function instance($name = 'default')
|
static function instance($name = 'default')
|
||||||
{
|
{
|
||||||
if (isset(self::$instances[$name]))
|
if (isset(self::$instances[$name]))
|
||||||
return self::$instances[$name];
|
return self::$instances[$name];
|
||||||
|
|
||||||
$instance = new Parsedown();
|
$instance = new Parsedown();
|
||||||
|
|
||||||
self::$instances[$name] = $instance;
|
self::$instances[$name] = $instance;
|
||||||
|
|
||||||
return $instance;
|
return $instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static $instances = array();
|
private static $instances = array();
|
||||||
|
|
||||||
#
|
#
|
||||||
# Fields
|
# Fields
|
||||||
#
|
#
|
||||||
|
|
||||||
private $reference_map = array();
|
private $reference_map = array();
|
||||||
private $escape_sequence_map = array();
|
private $escape_sequence_map = array();
|
||||||
|
|
||||||
#
|
#
|
||||||
# Public Methods
|
# Public Methods
|
||||||
#
|
#
|
||||||
|
|
||||||
function parse($text)
|
function parse($text)
|
||||||
{
|
{
|
||||||
# Removes UTF-8 BOM and marker characters.
|
# Removes UTF-8 BOM and marker characters.
|
||||||
$text = preg_replace('{^\xEF\xBB\xBF|\x1A}', '', $text);
|
$text = preg_replace('{^\xEF\xBB\xBF|\x1A}', '', $text);
|
||||||
|
|
||||||
# Removes \r characters.
|
# Removes \r characters.
|
||||||
$text = str_replace("\r\n", "\n", $text);
|
$text = str_replace("\r\n", "\n", $text);
|
||||||
$text = str_replace("\r", "\n", $text);
|
$text = str_replace("\r", "\n", $text);
|
||||||
|
|
||||||
# Replaces tabs with spaces.
|
# Replaces tabs with spaces.
|
||||||
$text = str_replace("\t", ' ', $text);
|
$text = str_replace("\t", ' ', $text);
|
||||||
|
|
||||||
# Encodes escape sequences.
|
# Encodes escape sequences.
|
||||||
|
|
||||||
if (strpos($text, '\\') !== FALSE)
|
if (strpos($text, '\\') !== FALSE)
|
||||||
{
|
{
|
||||||
$escape_sequences = array('\\\\', '\`', '\*', '\_', '\{', '\}', '\[', '\]', '\(', '\)', '\>', '\#', '\+', '\-', '\.', '\!');
|
$escape_sequences = array('\\\\', '\`', '\*', '\_', '\{', '\}', '\[', '\]', '\(', '\)', '\>', '\#', '\+', '\-', '\.', '\!');
|
||||||
|
|
||||||
foreach ($escape_sequences as $index => $escape_sequence)
|
foreach ($escape_sequences as $index => $escape_sequence)
|
||||||
{
|
{
|
||||||
if (strpos($text, $escape_sequence) !== FALSE)
|
if (strpos($text, $escape_sequence) !== FALSE)
|
||||||
{
|
{
|
||||||
$code = "\x1A".'\\'.$index;
|
$code = "\x1A".'\\'.$index;
|
||||||
|
|
||||||
$text = str_replace($escape_sequence, $code, $text);
|
$text = str_replace($escape_sequence, $code, $text);
|
||||||
|
|
||||||
$this->escape_sequence_map[$code] = $escape_sequence;
|
$this->escape_sequence_map[$code] = $escape_sequence;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
$text = preg_replace('/\n\s*\n/', "\n\n", $text);
|
$text = preg_replace('/\n\s*\n/', "\n\n", $text);
|
||||||
$text = trim($text, "\n ");
|
$text = trim($text, "\n ");
|
||||||
|
|
||||||
$lines = explode("\n", $text);
|
$lines = explode("\n", $text);
|
||||||
|
|
||||||
$text = $this->parse_block_elements($lines);
|
$text = $this->parse_block_elements($lines);
|
||||||
|
|
||||||
# Decodes escape sequences (leaves out backslashes).
|
# Decodes escape sequences (leaves out backslashes).
|
||||||
|
|
||||||
foreach ($this->escape_sequence_map as $code => $escape_sequence)
|
foreach ($this->escape_sequence_map as $code => $escape_sequence)
|
||||||
{
|
{
|
||||||
$text = str_replace($code, $escape_sequence[1], $text);
|
$text = str_replace($code, $escape_sequence[1], $text);
|
||||||
}
|
}
|
||||||
|
|
||||||
$text = rtrim($text, "\n");
|
$text = rtrim($text, "\n");
|
||||||
|
|
||||||
return $text;
|
return $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
# Private Methods
|
# Private Methods
|
||||||
#
|
#
|
||||||
|
|
||||||
private function parse_block_elements(array $lines, $context = '')
|
private function parse_block_elements(array $lines, $context = '')
|
||||||
{
|
{
|
||||||
$elements = array();
|
$elements = array();
|
||||||
|
|
||||||
$element = array(
|
$element = array(
|
||||||
'type' => '',
|
'type' => '',
|
||||||
);
|
);
|
||||||
|
|
||||||
foreach ($lines as $line)
|
foreach ($lines as $line)
|
||||||
{
|
{
|
||||||
# Block-Level HTML
|
# Block-Level HTML
|
||||||
|
|
||||||
if ($element['type'] === 'block' and ! isset($element['closed']))
|
if ($element['type'] === 'block' and ! isset($element['closed']))
|
||||||
{
|
{
|
||||||
if (preg_match('{<'.$element['subtype'].'>$}', $line)) # <open>
|
if (preg_match('{<'.$element['subtype'].'>$}', $line)) # <open>
|
||||||
{
|
{
|
||||||
$element['depth']++;
|
$element['depth']++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (preg_match('{</'.$element['subtype'].'>$}', $line)) # </close>
|
if (preg_match('{</'.$element['subtype'].'>$}', $line)) # </close>
|
||||||
{
|
{
|
||||||
$element['depth'] > 0
|
$element['depth'] > 0
|
||||||
? $element['depth']--
|
? $element['depth']--
|
||||||
: $element['closed'] = true;
|
: $element['closed'] = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$element['text'] .= "\n".$line;
|
$element['text'] .= "\n".$line;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Empty
|
# Empty
|
||||||
|
|
||||||
if ($line === '')
|
if ($line === '')
|
||||||
{
|
{
|
||||||
$element['interrupted'] = true;
|
$element['interrupted'] = true;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Lazy Blockquote
|
# Lazy Blockquote
|
||||||
|
|
||||||
if ($element['type'] === 'blockquote' and ! isset($element['interrupted']))
|
if ($element['type'] === 'blockquote' and ! isset($element['interrupted']))
|
||||||
{
|
{
|
||||||
$line = preg_replace('/^[ ]*>[ ]?/', '', $line);
|
$line = preg_replace('/^[ ]*>[ ]?/', '', $line);
|
||||||
|
|
||||||
$element['lines'] []= $line;
|
$element['lines'] []= $line;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Lazy List Item
|
# Lazy List Item
|
||||||
|
|
||||||
if ($element['type'] === 'li')
|
if ($element['type'] === 'li')
|
||||||
{
|
{
|
||||||
if (preg_match('/^([ ]{0,3})(\d+[.]|[*+-])[ ](.*)/', $line, $matches))
|
if (preg_match('/^([ ]{0,3})(\d+[.]|[*+-])[ ](.*)/', $line, $matches))
|
||||||
{
|
{
|
||||||
if ($element['indentation'] !== $matches[1])
|
if ($element['indentation'] !== $matches[1])
|
||||||
{
|
{
|
||||||
$element['lines'] []= $line;
|
$element['lines'] []= $line;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
unset($element['last']);
|
unset($element['last']);
|
||||||
|
|
||||||
$elements []= $element;
|
$elements []= $element;
|
||||||
|
|
||||||
$element = array(
|
$element = array(
|
||||||
'type' => 'li',
|
'type' => 'li',
|
||||||
'indentation' => $matches[1],
|
'indentation' => $matches[1],
|
||||||
@ -176,42 +176,42 @@ class Parsedown
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($element['interrupted']))
|
if (isset($element['interrupted']))
|
||||||
{
|
{
|
||||||
if ($line[0] === ' ')
|
if ($line[0] === ' ')
|
||||||
{
|
{
|
||||||
$element['lines'] []= '';
|
$element['lines'] []= '';
|
||||||
|
|
||||||
$line = preg_replace('/^[ ]{0,4}/', '', $line);;
|
$line = preg_replace('/^[ ]{0,4}/', '', $line);;
|
||||||
|
|
||||||
$element['lines'] []= $line;
|
$element['lines'] []= $line;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$line = preg_replace('/^[ ]{0,4}/', '', $line);;
|
$line = preg_replace('/^[ ]{0,4}/', '', $line);;
|
||||||
|
|
||||||
$element['lines'] []= $line;
|
$element['lines'] []= $line;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Quick Paragraph
|
# Quick Paragraph
|
||||||
|
|
||||||
if ($line[0] >= 'a' or $line[0] >= 'A' and $line[0] <= 'Z')
|
if ($line[0] >= 'a' or $line[0] >= 'A' and $line[0] <= 'Z')
|
||||||
{
|
{
|
||||||
goto paragraph; # trust me
|
goto paragraph; # trust me
|
||||||
}
|
}
|
||||||
|
|
||||||
# Code
|
# Code
|
||||||
|
|
||||||
if ($line[0] === ' ' and preg_match('/^[ ]{4}(.*)/', $line, $matches))
|
if ($line[0] === ' ' and preg_match('/^[ ]{4}(.*)/', $line, $matches))
|
||||||
{
|
{
|
||||||
if ($element['type'] === 'code')
|
if ($element['type'] === 'code')
|
||||||
@ -219,16 +219,16 @@ class Parsedown
|
|||||||
if (isset($element['interrupted']))
|
if (isset($element['interrupted']))
|
||||||
{
|
{
|
||||||
$element['text'] .= "\n";
|
$element['text'] .= "\n";
|
||||||
|
|
||||||
unset ($element['interrupted']);
|
unset ($element['interrupted']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$element['text'] .= "\n".$matches[1];
|
$element['text'] .= "\n".$matches[1];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$elements []= $element;
|
$elements []= $element;
|
||||||
|
|
||||||
$element = array(
|
$element = array(
|
||||||
'type' => 'code',
|
'type' => 'code',
|
||||||
'text' => $matches[1],
|
'text' => $matches[1],
|
||||||
@ -237,62 +237,62 @@ class Parsedown
|
|||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Setext Header (---)
|
# Setext Header (---)
|
||||||
|
|
||||||
if ($line[0] === '-' and $element['type'] === 'p' and ! isset($element['interrupted']) and preg_match('/^[-]+[ ]*$/', $line))
|
if ($line[0] === '-' and $element['type'] === 'p' and ! isset($element['interrupted']) and preg_match('/^[-]+[ ]*$/', $line))
|
||||||
{
|
{
|
||||||
$element['type'] = 'h.';
|
$element['type'] = 'h.';
|
||||||
$element['level'] = 2;
|
$element['level'] = 2;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Atx Header (#)
|
# Atx Header (#)
|
||||||
|
|
||||||
if ($line[0] === '#' and preg_match('/^(#{1,6})[ ]*(.+?)[ ]*#*$/', $line, $matches))
|
if ($line[0] === '#' and preg_match('/^(#{1,6})[ ]*(.+?)[ ]*#*$/', $line, $matches))
|
||||||
{
|
{
|
||||||
$elements []= $element;
|
$elements []= $element;
|
||||||
|
|
||||||
$level = strlen($matches[1]);
|
$level = strlen($matches[1]);
|
||||||
|
|
||||||
$element = array(
|
$element = array(
|
||||||
'type' => 'h.',
|
'type' => 'h.',
|
||||||
'text' => $matches[2],
|
'text' => $matches[2],
|
||||||
'level' => $level,
|
'level' => $level,
|
||||||
);
|
);
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Setext Header (===)
|
# Setext Header (===)
|
||||||
|
|
||||||
if ($line[0] === '=' and $element['type'] === 'p' and ! isset($element['interrupted']) and preg_match('/^[=]+[ ]*$/', $line))
|
if ($line[0] === '=' and $element['type'] === 'p' and ! isset($element['interrupted']) and preg_match('/^[=]+[ ]*$/', $line))
|
||||||
{
|
{
|
||||||
$element['type'] = 'h.';
|
$element['type'] = 'h.';
|
||||||
$element['level'] = 1;
|
$element['level'] = 1;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
$pure_line = $line[0] !== ' ' ? $line : ltrim($line);
|
$pure_line = $line[0] !== ' ' ? $line : ltrim($line);
|
||||||
|
|
||||||
# Link Reference
|
# Link Reference
|
||||||
|
|
||||||
if ($pure_line[0] === '[' and preg_match('/^\[(.+?)\]:[ ]*([^ ]+)/', $pure_line, $matches))
|
if ($pure_line[0] === '[' and preg_match('/^\[(.+?)\]:[ ]*([^ ]+)/', $pure_line, $matches))
|
||||||
{
|
{
|
||||||
$label = strtolower($matches[1]);
|
$label = strtolower($matches[1]);
|
||||||
$url = trim($matches[2], '<>');
|
$url = trim($matches[2], '<>');
|
||||||
|
|
||||||
$this->reference_map[$label] = $url;
|
$this->reference_map[$label] = $url;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Blockquote
|
# Blockquote
|
||||||
|
|
||||||
if ($pure_line[0] === '>' and preg_match('/^>[ ]?(.*)/', $pure_line, $matches))
|
if ($pure_line[0] === '>' and preg_match('/^>[ ]?(.*)/', $pure_line, $matches))
|
||||||
{
|
{
|
||||||
if ($element['type'] === 'blockquote')
|
if ($element['type'] === 'blockquote')
|
||||||
@ -300,16 +300,16 @@ class Parsedown
|
|||||||
if (isset($element['interrupted']))
|
if (isset($element['interrupted']))
|
||||||
{
|
{
|
||||||
$element['lines'] []= '';
|
$element['lines'] []= '';
|
||||||
|
|
||||||
unset($element['interrupted']);
|
unset($element['interrupted']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$element['lines'] []= $matches[1];
|
$element['lines'] []= $matches[1];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$elements []= $element;
|
$elements []= $element;
|
||||||
|
|
||||||
$element = array(
|
$element = array(
|
||||||
'type' => 'blockquote',
|
'type' => 'blockquote',
|
||||||
'lines' => array(
|
'lines' => array(
|
||||||
@ -317,12 +317,12 @@ class Parsedown
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
# HTML
|
# HTML
|
||||||
|
|
||||||
if ($pure_line[0] === '<')
|
if ($pure_line[0] === '<')
|
||||||
{
|
{
|
||||||
# Block-Level HTML <self-closing/>
|
# Block-Level HTML <self-closing/>
|
||||||
@ -338,7 +338,7 @@ class Parsedown
|
|||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Block-Level HTML <open>
|
# Block-Level HTML <open>
|
||||||
|
|
||||||
if (preg_match('{^<(\w+)(?:[ ].*?)?>}', $pure_line, $matches))
|
if (preg_match('{^<(\w+)(?:[ ].*?)?>}', $pure_line, $matches))
|
||||||
@ -351,32 +351,32 @@ class Parsedown
|
|||||||
'text' => $pure_line,
|
'text' => $pure_line,
|
||||||
'depth' => 0,
|
'depth' => 0,
|
||||||
);
|
);
|
||||||
|
|
||||||
preg_match('{</'.$matches[1].'>\s*$}', $pure_line) and $element['closed'] = true;
|
preg_match('{</'.$matches[1].'>\s*$}', $pure_line) and $element['closed'] = true;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Horizontal Rule
|
# Horizontal Rule
|
||||||
|
|
||||||
if (preg_match('/^([-*_])([ ]{0,2}\1){2,}[ ]*$/', $pure_line))
|
if (preg_match('/^([-*_])([ ]{0,2}\1){2,}[ ]*$/', $pure_line))
|
||||||
{
|
{
|
||||||
$elements []= $element;
|
$elements []= $element;
|
||||||
|
|
||||||
$element = array(
|
$element = array(
|
||||||
'type' => 'hr',
|
'type' => 'hr',
|
||||||
);
|
);
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
# List Item
|
# List Item
|
||||||
|
|
||||||
if (preg_match('/^([ ]*)(\d+[.]|[*+-])[ ](.*)/', $line, $matches))
|
if (preg_match('/^([ ]*)(\d+[.]|[*+-])[ ](.*)/', $line, $matches))
|
||||||
{
|
{
|
||||||
$elements []= $element;
|
$elements []= $element;
|
||||||
|
|
||||||
$element = array(
|
$element = array(
|
||||||
'type' => 'li',
|
'type' => 'li',
|
||||||
'ordered' => isset($matches[2][1]),
|
'ordered' => isset($matches[2][1]),
|
||||||
@ -386,22 +386,22 @@ class Parsedown
|
|||||||
preg_replace('/^[ ]{0,4}/', '', $matches[3]),
|
preg_replace('/^[ ]{0,4}/', '', $matches[3]),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
paragraph:
|
paragraph:
|
||||||
|
|
||||||
if ($element['type'] === 'p')
|
if ($element['type'] === 'p')
|
||||||
{
|
{
|
||||||
if (isset($element['interrupted']))
|
if (isset($element['interrupted']))
|
||||||
{
|
{
|
||||||
$elements []= $element;
|
$elements []= $element;
|
||||||
|
|
||||||
$element['text'] = $line;
|
$element['text'] = $line;
|
||||||
|
|
||||||
unset($element['interrupted']);
|
unset($element['interrupted']);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -412,215 +412,215 @@ class Parsedown
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
$elements []= $element;
|
$elements []= $element;
|
||||||
|
|
||||||
$element = array(
|
$element = array(
|
||||||
'type' => 'p',
|
'type' => 'p',
|
||||||
'text' => $line,
|
'text' => $line,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$elements []= $element;
|
$elements []= $element;
|
||||||
|
|
||||||
array_shift($elements);
|
array_shift($elements);
|
||||||
|
|
||||||
#
|
#
|
||||||
# ~
|
# ~
|
||||||
#
|
#
|
||||||
|
|
||||||
$markup = '';
|
$markup = '';
|
||||||
|
|
||||||
foreach ($elements as $index => $element)
|
foreach ($elements as $index => $element)
|
||||||
{
|
{
|
||||||
switch ($element['type'])
|
switch ($element['type'])
|
||||||
{
|
{
|
||||||
case 'li':
|
case 'li':
|
||||||
|
|
||||||
if (isset($element['ordered'])) # first
|
if (isset($element['ordered'])) # first
|
||||||
{
|
{
|
||||||
$list_type = $element['ordered'] ? 'ol' : 'ul';
|
$list_type = $element['ordered'] ? 'ol' : 'ul';
|
||||||
|
|
||||||
$markup .= '<'.$list_type.'>'."\n";
|
$markup .= '<'.$list_type.'>'."\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($element['interrupted']) and ! isset($element['last']))
|
if (isset($element['interrupted']) and ! isset($element['last']))
|
||||||
{
|
{
|
||||||
$element['lines'] []= '';
|
$element['lines'] []= '';
|
||||||
}
|
}
|
||||||
|
|
||||||
$text = $this->parse_block_elements($element['lines'], 'li');
|
$text = $this->parse_block_elements($element['lines'], 'li');
|
||||||
|
|
||||||
$markup .= '<li>'.$text.'</li>'."\n";
|
$markup .= '<li>'.$text.'</li>'."\n";
|
||||||
|
|
||||||
isset($element['last']) and $markup .= '</'.$list_type.'>'."\n";
|
isset($element['last']) and $markup .= '</'.$list_type.'>'."\n";
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'p':
|
case 'p':
|
||||||
|
|
||||||
$text = $this->parse_inline_elements($element['text']);
|
$text = $this->parse_inline_elements($element['text']);
|
||||||
|
|
||||||
$text = preg_replace('/[ ]{2}\n/', '<br />'."\n", $text);
|
$text = preg_replace('/[ ]{2}\n/', '<br />'."\n", $text);
|
||||||
|
|
||||||
if ($context === 'li' and $index === 0)
|
if ($context === 'li' and $index === 0)
|
||||||
{
|
{
|
||||||
if (isset($element['interrupted']))
|
if (isset($element['interrupted']))
|
||||||
{
|
{
|
||||||
$markup .= "\n".'<p>'.$text.'</p>'."\n";
|
$markup .= "\n".'<p>'.$text.'</p>'."\n";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$markup .= $text;
|
$markup .= $text;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$markup .= '<p>'.$text.'</p>'."\n";
|
$markup .= '<p>'.$text.'</p>'."\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'code':
|
case 'code':
|
||||||
|
|
||||||
$text = htmlentities($element['text'], ENT_NOQUOTES);
|
$text = htmlentities($element['text'], ENT_NOQUOTES);
|
||||||
|
|
||||||
strpos($text, "\x1A\\") !== FALSE and $text = strtr($text, $this->escape_sequence_map);
|
strpos($text, "\x1A\\") !== FALSE and $text = strtr($text, $this->escape_sequence_map);
|
||||||
|
|
||||||
$markup .= '<pre><code>'.$text.'</code></pre>'."\n";
|
$markup .= '<pre><code>'.$text.'</code></pre>'."\n";
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'blockquote':
|
case 'blockquote':
|
||||||
|
|
||||||
$text = $this->parse_block_elements($element['lines']);
|
$text = $this->parse_block_elements($element['lines']);
|
||||||
|
|
||||||
$markup .= '<blockquote>'."\n".$text.'</blockquote>'."\n";
|
$markup .= '<blockquote>'."\n".$text.'</blockquote>'."\n";
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'h.':
|
case 'h.':
|
||||||
|
|
||||||
$text = $this->parse_inline_elements($element['text']);
|
$text = $this->parse_inline_elements($element['text']);
|
||||||
|
|
||||||
$markup .= '<h'.$element['level'].'>'.$text.'</h'.$element['level'].'>'."\n";
|
$markup .= '<h'.$element['level'].'>'.$text.'</h'.$element['level'].'>'."\n";
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'hr':
|
case 'hr':
|
||||||
|
|
||||||
$markup .= '<hr />'."\n";
|
$markup .= '<hr />'."\n";
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
||||||
$markup .= $element['text']."\n";
|
$markup .= $element['text']."\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $markup;
|
return $markup;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function parse_inline_elements($text)
|
private function parse_inline_elements($text)
|
||||||
{
|
{
|
||||||
$map = array();
|
$map = array();
|
||||||
|
|
||||||
$index = 0;
|
$index = 0;
|
||||||
|
|
||||||
# Code Span
|
# Code Span
|
||||||
|
|
||||||
if (strpos($text, '`') !== FALSE and preg_match_all('/`(.+?)`/', $text, $matches, PREG_SET_ORDER))
|
if (strpos($text, '`') !== FALSE and preg_match_all('/`(.+?)`/', $text, $matches, PREG_SET_ORDER))
|
||||||
{
|
{
|
||||||
foreach ($matches as $matches)
|
foreach ($matches as $matches)
|
||||||
{
|
{
|
||||||
$element_text = $matches[1];
|
$element_text = $matches[1];
|
||||||
$element_text = htmlentities($element_text, ENT_NOQUOTES);
|
$element_text = htmlentities($element_text, ENT_NOQUOTES);
|
||||||
|
|
||||||
# Decodes escape sequences.
|
# Decodes escape sequences.
|
||||||
|
|
||||||
$this->escape_sequence_map
|
$this->escape_sequence_map
|
||||||
and strpos($element_text, "\x1A") !== FALSE
|
and strpos($element_text, "\x1A") !== FALSE
|
||||||
and $element_text = strtr($element_text, $this->escape_sequence_map);
|
and $element_text = strtr($element_text, $this->escape_sequence_map);
|
||||||
|
|
||||||
# Composes element.
|
# Composes element.
|
||||||
|
|
||||||
$element = '<code>'.$element_text.'</code>';
|
$element = '<code>'.$element_text.'</code>';
|
||||||
|
|
||||||
# Encodes element.
|
# Encodes element.
|
||||||
|
|
||||||
$code = "\x1A".'$'.$index;
|
$code = "\x1A".'$'.$index;
|
||||||
|
|
||||||
$text = str_replace($matches[0], $code, $text);
|
$text = str_replace($matches[0], $code, $text);
|
||||||
|
|
||||||
$map[$code] = $element;
|
$map[$code] = $element;
|
||||||
|
|
||||||
$index ++;
|
$index ++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Inline Link / Image
|
# Inline Link / Image
|
||||||
|
|
||||||
if (strpos($text, '](') !== FALSE and preg_match_all('/(!?)(\[((?:[^\[\]]|(?2))*)\])\((.*?)\)/', $text, $matches, PREG_SET_ORDER)) # inline
|
if (strpos($text, '](') !== FALSE and preg_match_all('/(!?)(\[((?:[^\[\]]|(?2))*)\])\((.*?)\)/', $text, $matches, PREG_SET_ORDER)) # inline
|
||||||
{
|
{
|
||||||
foreach ($matches as $matches)
|
foreach ($matches as $matches)
|
||||||
{
|
{
|
||||||
$url = $matches[4];
|
$url = $matches[4];
|
||||||
|
|
||||||
strpos($url, '&') !== FALSE and $url = preg_replace('/&(?!#?\w+;)/', '&', $url);
|
strpos($url, '&') !== FALSE and $url = preg_replace('/&(?!#?\w+;)/', '&', $url);
|
||||||
|
|
||||||
if ($matches[1]) # image
|
if ($matches[1]) # image
|
||||||
{
|
{
|
||||||
$element = '<img alt="'.$matches[3].'" src="'.$url.'">';
|
$element = '<img alt="'.$matches[3].'" src="'.$url.'">';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$element_text = $this->parse_inline_elements($matches[3]);
|
$element_text = $this->parse_inline_elements($matches[3]);
|
||||||
|
|
||||||
$element = '<a href="'.$url.'">'.$element_text.'</a>';
|
$element = '<a href="'.$url.'">'.$element_text.'</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
$code = "\x1A".'$'.$index;
|
$code = "\x1A".'$'.$index;
|
||||||
|
|
||||||
$text = str_replace($matches[0], $code, $text);
|
$text = str_replace($matches[0], $code, $text);
|
||||||
|
|
||||||
$map[$code] = $element;
|
$map[$code] = $element;
|
||||||
|
|
||||||
$index ++;
|
$index ++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Reference(d) Link / Image
|
# Reference(d) Link / Image
|
||||||
|
|
||||||
if ($this->reference_map and strpos($text, '[') !== FALSE and preg_match_all('/(!?)\[(.+?)\](?:\n?[ ]?\[(.*?)\])?/ms', $text, $matches, PREG_SET_ORDER))
|
if ($this->reference_map and strpos($text, '[') !== FALSE and preg_match_all('/(!?)\[(.+?)\](?:\n?[ ]?\[(.*?)\])?/ms', $text, $matches, PREG_SET_ORDER))
|
||||||
{
|
{
|
||||||
foreach ($matches as $matches)
|
foreach ($matches as $matches)
|
||||||
{
|
{
|
||||||
$link_definition = isset($matches[3]) && $matches[3]
|
$link_definition = isset($matches[3]) && $matches[3]
|
||||||
? $matches[3]
|
? $matches[3]
|
||||||
: $matches[2]; # implicit
|
: $matches[2]; # implicit
|
||||||
|
|
||||||
$link_definition = strtolower($link_definition);
|
$link_definition = strtolower($link_definition);
|
||||||
|
|
||||||
if (isset($this->reference_map[$link_definition]))
|
if (isset($this->reference_map[$link_definition]))
|
||||||
{
|
{
|
||||||
$url = $this->reference_map[$link_definition];
|
$url = $this->reference_map[$link_definition];
|
||||||
|
|
||||||
strpos($url, '&') !== FALSE and $url = preg_replace('/&(?!#?\w+;)/', '&', $url);
|
strpos($url, '&') !== FALSE and $url = preg_replace('/&(?!#?\w+;)/', '&', $url);
|
||||||
|
|
||||||
if ($matches[1]) # image
|
if ($matches[1]) # image
|
||||||
{
|
{
|
||||||
$element = '<img alt="'.$matches[2].'" src="'.$url.'">';
|
$element = '<img alt="'.$matches[2].'" src="'.$url.'">';
|
||||||
}
|
}
|
||||||
else # anchor
|
else # anchor
|
||||||
{
|
{
|
||||||
$element_text = $this->parse_inline_elements($matches[2]);
|
$element_text = $this->parse_inline_elements($matches[2]);
|
||||||
|
|
||||||
$element = '<a href="'.$url.'">'.$element_text.'</a>';
|
$element = '<a href="'.$url.'">'.$element_text.'</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
$code = "\x1A".'$'.$index;
|
$code = "\x1A".'$'.$index;
|
||||||
|
|
||||||
@ -632,54 +632,54 @@ class Parsedown
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Automatic Links
|
# Automatic Links
|
||||||
|
|
||||||
if (strpos($text, '<') !== FALSE and preg_match_all('/<((https?|ftp|dict):[^\^\s]+?)>/i', $text, $matches, PREG_SET_ORDER))
|
if (strpos($text, '<') !== FALSE and preg_match_all('/<((https?|ftp|dict):[^\^\s]+?)>/i', $text, $matches, PREG_SET_ORDER))
|
||||||
{
|
{
|
||||||
foreach ($matches as $matches)
|
foreach ($matches as $matches)
|
||||||
{
|
{
|
||||||
$url = $matches[1];
|
$url = $matches[1];
|
||||||
|
|
||||||
strpos($url, '&') !== FALSE and $url = preg_replace('/&(?!#?\w+;)/', '&', $url);
|
strpos($url, '&') !== FALSE and $url = preg_replace('/&(?!#?\w+;)/', '&', $url);
|
||||||
|
|
||||||
$element = '<a href=":href">:text</a>';
|
$element = '<a href=":href">:text</a>';
|
||||||
$element = str_replace(':text', $url, $element);
|
$element = str_replace(':text', $url, $element);
|
||||||
$element = str_replace(':href', $url, $element);
|
$element = str_replace(':href', $url, $element);
|
||||||
|
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
$code = "\x1A".'$'.$index;
|
$code = "\x1A".'$'.$index;
|
||||||
|
|
||||||
$text = str_replace($matches[0], $code, $text);
|
$text = str_replace($matches[0], $code, $text);
|
||||||
|
|
||||||
$map[$code] = $element;
|
$map[$code] = $element;
|
||||||
|
|
||||||
$index ++;
|
$index ++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
strpos($text, '&') !== FALSE and $text = preg_replace('/&(?!#?\w+;)/', '&', $text);
|
strpos($text, '&') !== FALSE and $text = preg_replace('/&(?!#?\w+;)/', '&', $text);
|
||||||
strpos($text, '<') !== FALSE and $text = preg_replace('/<(?!\/?\w.*?>)/', '<', $text);
|
strpos($text, '<') !== FALSE and $text = preg_replace('/<(?!\/?\w.*?>)/', '<', $text);
|
||||||
|
|
||||||
# ~
|
# ~
|
||||||
|
|
||||||
if (strpos($text, '_') !== FALSE)
|
if (strpos($text, '_') !== FALSE)
|
||||||
{
|
{
|
||||||
$text = preg_replace('/__(?=\S)(.+?)(?<=\S)__/', '<strong>$1</strong>', $text);
|
$text = preg_replace('/__(?=\S)(.+?)(?<=\S)__/', '<strong>$1</strong>', $text);
|
||||||
$text = preg_replace('/_(?=\S)(.+?)(?<=\S)_/', '<em>$1</em>', $text);
|
$text = preg_replace('/_(?=\S)(.+?)(?<=\S)_/', '<em>$1</em>', $text);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strpos($text, '*') !== FALSE)
|
if (strpos($text, '*') !== FALSE)
|
||||||
{
|
{
|
||||||
$text = preg_replace('/\*\*(?=\S)(.+?)(?<=\S)\*\*/', '<strong>$1</strong>', $text);
|
$text = preg_replace('/\*\*(?=\S)(.+?)(?<=\S)\*\*/', '<strong>$1</strong>', $text);
|
||||||
$text = preg_replace('/\*(?=\S)(.+?)(?<=\S)\*/', '<em>$1</em>', $text);
|
$text = preg_replace('/\*(?=\S)(.+?)(?<=\S)\*/', '<em>$1</em>', $text);
|
||||||
}
|
}
|
||||||
|
|
||||||
$text = strtr($text, $map);
|
$text = strtr($text, $map);
|
||||||
|
|
||||||
return $text;
|
return $text;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user