parsedown/Parsedown.php

597 lines
12 KiB
PHP
Raw Normal View History

2013-07-11 00:22:16 +04:00
<?php
#
#
# Parsedown
# http://parsedown.org
#
# (c) Emanuil Rusev
# http://erusev.com
#
# For the full license information, please view the LICENSE file that was
# distributed with this source code.
#
#
class Parsedown
{
#
# Multiton (http://en.wikipedia.org/wiki/Multiton_pattern)
#
static function instance($name = 'default')
{
if (isset(self::$instances[$name]))
return self::$instances[$name];
$instance = new Parsedown();
self::$instances[$name] = $instance;
return $instance;
}
private static $instances = array();
#
# Fields
#
private $reference_map = array();
private $escape_sequence_map = array();
#
# Public Methods
#
function parse($text)
{
# Removes UTF-8 BOM and marker characters.
$text = preg_replace('{^\xEF\xBB\xBF|\x1A}', '', $text);
# Removes \r characters.
$text = str_replace("\r\n", "\n", $text);
$text = str_replace("\r", "\n", $text);
2013-07-11 00:22:16 +04:00
# Replaces tabs with spaces.
$text = str_replace("\t", ' ', $text);
# Encodes escape sequences.
if (strpos($text, '\\') !== FALSE)
{
$escape_sequences = array('\\\\', '\`', '\*', '\_', '\{', '\}', '\[', '\]', '\(', '\)', '\>', '\#', '\+', '\-', '\.', '\!');
foreach ($escape_sequences as $index => $escape_sequence)
{
if (strpos($text, $escape_sequence) !== FALSE)
{
$code = "\x1A".'\\'.$index;
$text = str_replace($escape_sequence, $code, $text);
$this->escape_sequence_map[$code] = $escape_sequence;
}
}
}
# Extracts link references.
if (preg_match_all('/^[ ]{0,3}\[(.+)\][ ]?:[ ]*\n?[ ]*(.+)$/m', $text, $matches, PREG_SET_ORDER))
{
foreach ($matches as $matches)
{
2013-08-31 20:55:07 +04:00
$this->reference_map[strtolower($matches[1])] = $matches[2];
2013-07-11 00:22:16 +04:00
$text = str_replace($matches[0], '', $text);
}
}
# ~
$text = preg_replace('/\n\s*\n/', "\n\n", $text);
2013-09-24 02:19:17 +04:00
$text = trim($text, "\n");
2013-09-24 02:19:17 +04:00
$lines = explode("\n", $text);
$text = $this->parse_block_elements($lines);
2013-07-11 00:22:16 +04:00
# Decodes escape sequences (leaves out backslashes).
foreach ($this->escape_sequence_map as $code => $escape_sequence)
{
$text = str_replace($code, $escape_sequence[1], $text);
}
$text = rtrim($text, "\n");
return $text;
}
#
# Private Methods
#
2013-09-24 02:19:17 +04:00
private function parse_block_elements(array $lines, $context = '')
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
$elements = array();
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
$element = array(
'type' => '',
);
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
foreach ($lines as $line)
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
# Empty
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
if ($line === '')
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
$element['interrupted'] = true;
2013-07-11 00:22:16 +04:00
continue;
}
2013-09-24 02:19:17 +04:00
# Lazy Blockquote
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
if ($element['type'] === 'blockquote' and ! isset($element['interrupted']))
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
$line = preg_replace('/^[ ]*>[ ]?/', '', $line);
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
$element['lines'] []= $line;
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
continue;
2013-07-11 00:22:16 +04:00
}
2013-09-24 02:19:17 +04:00
# Lazy List Item
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
if ($element['type'] === 'li')
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
if (preg_match('/^([ ]{0,3})(\d+[.]|[*+-])[ ](.*)/', $line, $matches))
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
if ($element['indentation'] !== $matches[1])
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
$element['lines'] []= $line;
2013-07-11 00:22:16 +04:00
}
else
{
2013-09-24 02:19:17 +04:00
unset($element['last']);
$elements []= $element;
$element = array(
'type' => 'li',
'indentation' => $matches[1],
'last' => true,
'lines' => array(
preg_replace('/^[ ]{0,4}/', '', $matches[3]),
),
);
2013-07-11 00:22:16 +04:00
}
2013-09-24 02:19:17 +04:00
continue;
2013-07-11 00:22:16 +04:00
}
2013-09-24 02:19:17 +04:00
if (isset($element['interrupted']))
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
if ($line[0] === ' ')
{
$element['lines'] []= '';
$line = preg_replace('/^[ ]{0,4}/', '', $line);;
$element['lines'] []= $line;
2013-09-24 02:19:17 +04:00
continue;
}
}
2013-09-24 02:19:17 +04:00
else
{
2013-09-24 02:19:17 +04:00
$line = preg_replace('/^[ ]{0,4}/', '', $line);;
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
$element['lines'] []= $line;
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
continue;
2013-07-11 00:22:16 +04:00
}
}
2013-09-24 02:19:17 +04:00
# Quick Paragraph
2013-07-11 00:22:16 +04:00
2013-09-24 03:32:58 +04:00
if ($line[0] >= 'A' and $line['0'] !== '_')
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
goto paragraph; # trust me
}
# Setext Header (---)
if ($element['type'] === 'p' and ! isset($element['interrupted']) and preg_match('/^[-]+[ ]*$/', $line))
2013-09-24 02:19:17 +04:00
{
$element['type'] = 'h.';
$element['level'] = 2;
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
continue;
2013-07-11 00:22:16 +04:00
}
2013-09-24 02:19:17 +04:00
# Horizontal Rule
if (preg_match('/^[ ]{0,3}([-*_])([ ]{0,2}\1){2,}[ ]*$/', $line))
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
$elements []= $element;
$element = array(
'type' => 'hr',
);
continue;
2013-07-11 00:22:16 +04:00
}
2013-09-24 02:19:17 +04:00
# List Item
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
if (preg_match('/^([ ]{0,3})(\d+[.]|[*+-])[ ](.*)/', $line, $matches))
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
$elements []= $element;
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
$element = array(
'type' => 'li',
'ordered' => isset($matches[2][1]),
'indentation' => $matches[1],
'last' => true,
'lines' => array(
preg_replace('/^[ ]{0,4}/', '', $matches[3]),
),
);
continue;
}
2013-09-24 02:19:17 +04:00
# Code
if (preg_match('/^[ ]{4}(.*)/', $line, $matches))
{
2013-09-24 02:19:17 +04:00
if ($element['type'] === 'code')
{
2013-11-02 04:18:13 +04:00
isset($element['interrupted']) and $element['text'] .= "\n";
2013-09-24 02:19:17 +04:00
$element['text'] .= "\n".$matches[1];
}
2013-09-24 02:19:17 +04:00
else
{
2013-09-24 02:19:17 +04:00
$elements []= $element;
2013-09-24 02:19:17 +04:00
$element = array(
'type' => 'code',
'text' => $matches[1],
);
}
2013-09-24 02:19:17 +04:00
continue;
2013-07-11 00:22:16 +04:00
}
2013-09-24 02:19:17 +04:00
# Atx Header (#)
2013-09-24 02:19:17 +04:00
if ($line[0] === '#' and preg_match('/^(#{1,6})[ ]*(.+?)[ ]*#*$/', $line, $matches))
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
$elements []= $element;
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
$level = strlen($matches[1]);
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
$element = array(
'type' => 'h.',
'text' => $matches[2],
'level' => $level,
);
2013-09-24 02:19:17 +04:00
continue;
}
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
# Blockquote
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
if (preg_match('/^[ ]*>[ ]?(.*)/', $line, $matches))
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
if ($element['type'] === 'blockquote')
{
if (isset($element['interrupted']))
{
$element['lines'] []= '';
unset($element['interrupted']);
}
$element['lines'] []= $matches[1];
}
else
{
$elements []= $element;
$element = array(
'type' => 'blockquote',
'lines' => array(
$matches[1],
),
);
}
continue;
2013-07-11 00:22:16 +04:00
}
2013-09-24 02:19:17 +04:00
# Setext Header (===)
2013-07-11 00:22:16 +04:00
if ($element['type'] === 'p' and ! isset($element['interrupted']) and preg_match('/^[=]+[ ]*$/', $line))
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
$element['type'] = 'h.';
$element['level'] = 1;
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
continue;
2013-07-11 00:22:16 +04:00
}
2013-09-24 02:19:17 +04:00
# ~
paragraph:
if ($element['type'] === 'p')
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
if (isset($element['interrupted']))
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
$elements []= $element;
$element['text'] = $line;
unset($element['interrupted']);
2013-07-11 00:22:16 +04:00
}
2013-09-24 02:19:17 +04:00
else
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
$element['text'] .= "\n".$line;
2013-07-11 00:22:16 +04:00
}
}
2013-09-24 02:19:17 +04:00
else
2013-07-11 00:22:16 +04:00
{
2013-09-24 02:19:17 +04:00
$elements []= $element;
2013-09-24 02:19:17 +04:00
$element = array(
'type' => 'p',
'text' => $line,
);
}
}
$elements []= $element;
array_shift($elements);
#
# ~
#
$markup = '';
foreach ($elements as $index => $element)
{
switch ($element['type'])
{
case 'li':
if (isset($element['ordered'])) # first
{
2013-09-24 02:19:17 +04:00
$list_type = $element['ordered'] ? 'ol' : 'ul';
$markup .= '<'.$list_type.'>'."\n";
}
2013-09-24 02:19:17 +04:00
if (isset($element['interrupted']) and ! isset($element['last']))
{
2013-09-24 02:19:17 +04:00
$element['lines'] []= '';
}
2013-07-11 00:22:16 +04:00
2013-09-24 02:19:17 +04:00
$text = $this->parse_block_elements($element['lines'], 'li');
$markup .= '<li>'.$text.'</li>'."\n";
isset($element['last']) and $markup .= '</'.$list_type.'>'."\n";
break;
case 'p':
$text = $this->parse_inline_elements($element['text']);
$text = preg_replace('/[ ]{2}\n/', '<br />'."\n", $text);
if ($context === 'li' and $index === 0)
{
if (isset($element['interrupted']))
{
$markup .= "\n".'<p>'.$text.'</p>'."\n";
}
else
{
$markup .= $text;
}
}
else
{
$markup .= '<p>'.$text.'</p>'."\n";
}
break;
case 'code':
2013-11-02 04:18:13 +04:00
$text = htmlentities($element['text'], ENT_NOQUOTES);
2013-09-24 02:19:17 +04:00
strpos($text, "\x1A\\") !== FALSE and $text = strtr($text, $this->escape_sequence_map);
$markup .= '<pre><code>'.$text.'</code></pre>'."\n";
break;
case 'blockquote':
$text = $this->parse_block_elements($element['lines']);
$markup .= '<blockquote>'."\n".$text.'</blockquote>'."\n";
break;
2013-09-24 02:19:17 +04:00
case 'h.':
$text = $this->parse_inline_elements($element['text']);
$markup .= '<h'.$element['level'].'>'.$text.'</h'.$element['level'].'>'."\n";
break;
case 'hr':
$markup .= '<hr />'."\n";
break;
2013-07-11 00:22:16 +04:00
}
}
return $markup;
}
private function parse_inline_elements($text)
{
$map = array();
$index = 0;
# Code Span
if (strpos($text, '`') !== FALSE and preg_match_all('/`(.+?)`/', $text, $matches, PREG_SET_ORDER))
{
foreach ($matches as $matches)
{
$element_text = $matches[1];
$element_text = htmlentities($element_text, ENT_NOQUOTES);
# Decodes escape sequences.
$this->escape_sequence_map
and strpos($element_text, "\x1A") !== FALSE
and $element_text = strtr($element_text, $this->escape_sequence_map);
# Composes element.
$element = '<code>'.$element_text.'</code>';
# Encodes element.
$code = "\x1A".'$'.$index;
$text = str_replace($matches[0], $code, $text);
$map[$code] = $element;
$index ++;
}
}
# Inline Link / Image
if (strpos($text, '](') !== FALSE and preg_match_all('/(!?)(\[((?:[^][]+|(?2))*)\])\((.*?)\)/', $text, $matches, PREG_SET_ORDER)) # inline
{
foreach ($matches as $matches)
{
if ($matches[1]) # image
{
$element = '<img alt="'.$matches[3].'" src="'.$matches[4].'">';
}
else
{
$element_text = $this->parse_inline_elements($matches[3]);
$element = '<a href="'.$matches[4].'">'.$element_text.'</a>';
}
# ~
$code = "\x1A".'$'.$index;
$text = str_replace($matches[0], $code, $text);
$map[$code] = $element;
$index ++;
}
}
2013-07-11 00:22:16 +04:00
# Reference(d) Link / Image
if ($this->reference_map and strpos($text, '[') !== FALSE and preg_match_all('/(!?)\[(.+?)\](?:\n?[ ]?\[(.*?)\])?/ms', $text, $matches, PREG_SET_ORDER))
2013-07-11 00:22:16 +04:00
{
foreach ($matches as $matches)
{
2013-10-13 23:52:36 +04:00
$link_definition = isset($matches[3]) && $matches[3]
2013-08-31 20:55:07 +04:00
? $matches[3]
: $matches[2]; # implicit
2013-10-13 23:52:36 +04:00
$link_definition = strtolower($link_definition);
2013-08-31 20:55:07 +04:00
2013-10-13 23:52:36 +04:00
if (isset($this->reference_map[$link_definition]))
2013-07-11 00:22:16 +04:00
{
2013-10-13 23:52:36 +04:00
$url = $this->reference_map[$link_definition];
2013-08-31 20:55:07 +04:00
2013-07-11 00:22:16 +04:00
if ($matches[1]) # image
{
$element = '<img alt="'.$matches[2].'" src="'.$url.'">';
}
else # anchor
{
$element_text = $this->parse_inline_elements($matches[2]);
$element = '<a href="'.$url.'">'.$element_text.'</a>';
}
# ~
$code = "\x1A".'$'.$index;
$text = str_replace($matches[0], $code, $text);
$map[$code] = $element;
$index ++;
}
}
}
if (strpos($text, '<') !== FALSE and preg_match_all('/<((https?|ftp|dict):[^\^\s]+?)>/i', $text, $matches, PREG_SET_ORDER))
{
foreach ($matches as $matches)
{
$element = '<a href=":href">:text</a>';
$element = str_replace(':text', $matches[1], $element);
$element = str_replace(':href', $matches[1], $element);
# ~
$code = "\x1A".'$'.$index;
$text = str_replace($matches[0], $code, $text);
$map[$code] = $element;
$index ++;
}
}
if (strpos($text, '_') !== FALSE)
2013-07-11 00:22:16 +04:00
{
$text = preg_replace('/__(?=\S)(.+?)(?<=\S)__/', '<strong>$1</strong>', $text);
$text = preg_replace('/_(?=\S)(.+?)(?<=\S)_/', '<em>$1</em>', $text);
2013-07-11 00:22:16 +04:00
}
if (strpos($text, '*') !== FALSE)
{
$text = preg_replace('/\*\*(?=\S)(.+?)(?<=\S)\*\*/', '<strong>$1</strong>', $text);
$text = preg_replace('/\*(?=\S)(.+?)(?<=\S)\*/', '<em>$1</em>', $text);
}
2013-07-11 00:22:16 +04:00
$text = strtr($text, $map);
return $text;
}
}