2013-11-09 01:40:00 +04:00
|
|
|
<?php
|
2013-07-11 00:22:16 +04:00
|
|
|
|
2013-11-09 01:40:00 +04:00
|
|
|
#
|
|
|
|
#
|
2013-07-11 00:22:16 +04:00
|
|
|
# Parsedown
|
|
|
|
# http://parsedown.org
|
2013-11-09 01:40:00 +04:00
|
|
|
#
|
|
|
|
# (c) Emanuil Rusev
|
2013-07-11 00:22:16 +04:00
|
|
|
# http://erusev.com
|
2013-11-09 01:40:00 +04:00
|
|
|
#
|
|
|
|
# For the full license information, please view the LICENSE file that was
|
2013-07-11 00:22:16 +04:00
|
|
|
# distributed with this source code.
|
2013-11-09 01:40:00 +04:00
|
|
|
#
|
|
|
|
#
|
2013-07-11 00:22:16 +04:00
|
|
|
|
|
|
|
class Parsedown
|
|
|
|
{
|
2014-01-23 02:57:36 +04:00
|
|
|
#
|
|
|
|
# Multiton (http://en.wikipedia.org/wiki/Multiton_pattern)
|
|
|
|
#
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
static function instance($name = 'default')
|
|
|
|
{
|
|
|
|
if (isset(self::$instances[$name]))
|
|
|
|
return self::$instances[$name];
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$instance = new Parsedown();
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
self::$instances[$name] = $instance;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
return $instance;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
private static $instances = array();
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
#
|
|
|
|
# Setters
|
|
|
|
#
|
2013-12-27 01:43:25 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
private $breaks_enabled = false;
|
2013-12-27 01:43:25 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
function set_breaks_enabled($breaks_enabled)
|
|
|
|
{
|
|
|
|
$this->breaks_enabled = $breaks_enabled;
|
2013-12-27 01:43:25 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
return $this;
|
|
|
|
}
|
2013-12-27 01:43:25 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
#
|
|
|
|
# Fields
|
|
|
|
#
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
private $reference_map = array();
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
#
|
|
|
|
# Public Methods
|
|
|
|
#
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
function parse($text)
|
|
|
|
{
|
2014-01-24 00:08:06 +04:00
|
|
|
# simplifies line breaks
|
2014-01-23 02:57:36 +04:00
|
|
|
$text = str_replace("\r\n", "\n", $text);
|
|
|
|
$text = str_replace("\r", "\n", $text);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# replaces tabs with spaces
|
|
|
|
$text = str_replace("\t", ' ', $text);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-24 00:08:06 +04:00
|
|
|
# removes surrounding line breaks
|
2014-01-23 02:57:36 +04:00
|
|
|
$text = trim($text, "\n");
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-24 00:08:06 +04:00
|
|
|
# splits text into lines
|
2014-01-23 02:57:36 +04:00
|
|
|
$lines = explode("\n", $text);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-24 00:08:06 +04:00
|
|
|
# converts lines into html
|
2014-01-23 02:57:36 +04:00
|
|
|
$text = $this->parse_block_elements($lines);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-24 00:08:06 +04:00
|
|
|
# removes trailing line breaks
|
2014-01-23 15:07:15 +04:00
|
|
|
$text = chop($text, "\n");
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
return $text;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
#
|
|
|
|
# Private Methods
|
|
|
|
#
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
private function parse_block_elements(array $lines, $context = '')
|
|
|
|
{
|
|
|
|
$elements = array();
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element = array(
|
|
|
|
'type' => '',
|
|
|
|
);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
foreach ($lines as $line)
|
|
|
|
{
|
|
|
|
# fenced elements
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
switch ($element['type'])
|
|
|
|
{
|
|
|
|
case 'fenced block':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ( ! isset($element['closed']))
|
|
|
|
{
|
|
|
|
if (preg_match('/^[ ]*'.$element['fence'][0].'{3,}[ ]*$/', $line))
|
|
|
|
{
|
|
|
|
$element['closed'] = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$element['text'] !== '' and $element['text'] .= "\n";
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element['text'] .= $line;
|
|
|
|
}
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-02 23:42:55 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case 'block-level markup':
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ( ! isset($element['closed']))
|
|
|
|
{
|
|
|
|
if (strpos($line, $element['start']) !== false) # opening tag
|
|
|
|
{
|
|
|
|
$element['depth']++;
|
|
|
|
}
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (strpos($line, $element['end']) !== false) # closing tag
|
|
|
|
{
|
|
|
|
$element['depth'] > 0
|
|
|
|
? $element['depth']--
|
|
|
|
: $element['closed'] = true;
|
|
|
|
}
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element['text'] .= "\n".$line;
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# *
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$deindented_line = ltrim($line);
|
2014-01-17 01:43:34 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ($deindented_line === '')
|
|
|
|
{
|
|
|
|
$element['interrupted'] = true;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# composite elements
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
switch ($element['type'])
|
|
|
|
{
|
|
|
|
case 'blockquote':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ( ! isset($element['interrupted']))
|
|
|
|
{
|
|
|
|
$line = preg_replace('/^[ ]*>[ ]?/', '', $line);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element['lines'] []= $line;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case 'li':
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (preg_match('/^([ ]{0,3})(\d+[.]|[*+-])[ ](.*)/', $line, $matches))
|
|
|
|
{
|
|
|
|
if ($element['indentation'] !== $matches[1])
|
|
|
|
{
|
|
|
|
$element['lines'] []= $line;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unset($element['last']);
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$elements []= $element;
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
unset($element['first']);
|
2014-01-22 03:03:21 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element['last'] = true;
|
|
|
|
$element['lines'] = array(
|
|
|
|
preg_replace('/^[ ]{0,4}/', '', $matches[3]),
|
|
|
|
);
|
|
|
|
}
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($element['interrupted']))
|
|
|
|
{
|
|
|
|
if ($line[0] === ' ')
|
|
|
|
{
|
|
|
|
$element['lines'] []= '';
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$line = preg_replace('/^[ ]{0,4}/', '', $line);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element['lines'] []= $line;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
unset($element['interrupted']);
|
2013-12-06 02:14:50 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$line = preg_replace('/^[ ]{0,4}/', '', $line);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element['lines'] []= $line;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# indentation sensitive types
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
switch ($line[0])
|
|
|
|
{
|
|
|
|
case ' ':
|
2013-11-10 00:23:56 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# code block
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($line[3]) and $line[3] === ' ' and $line[2] === ' ' and $line[1] === ' ')
|
|
|
|
{
|
|
|
|
$code_line = substr($line, 4);
|
2014-01-17 01:43:12 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ($element['type'] === 'code block')
|
|
|
|
{
|
|
|
|
if (isset($element['interrupted']))
|
|
|
|
{
|
|
|
|
$element['text'] .= "\n";
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
unset ($element['interrupted']);
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element['text'] .= "\n".$code_line;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$elements []= $element;
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element = array(
|
|
|
|
'type' => 'code block',
|
|
|
|
'text' => $code_line,
|
|
|
|
);
|
|
|
|
}
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case '#':
|
2013-11-04 11:28:50 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# atx heading (#)
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($line[1]))
|
|
|
|
{
|
|
|
|
$elements []= $element;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$level = 1;
|
2014-01-17 02:36:11 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
while (isset($line[$level]) and $line[$level] === '#')
|
|
|
|
{
|
|
|
|
$level++;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element = array(
|
|
|
|
'type' => 'heading',
|
|
|
|
'text' => trim($line, '# '),
|
|
|
|
'level' => $level,
|
|
|
|
);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case '-':
|
|
|
|
case '=':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# setext heading
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ($element['type'] === 'paragraph' and isset($element['interrupted']) === false)
|
|
|
|
{
|
2014-01-23 15:07:15 +04:00
|
|
|
$chopped_line = chop($line);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$i = 1;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
while (isset($chopped_line[$i]))
|
|
|
|
{
|
|
|
|
if ($chopped_line[$i] !== $line[0])
|
|
|
|
{
|
|
|
|
break 2;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$i++;
|
|
|
|
}
|
2014-01-17 03:23:25 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element['type'] = 'heading';
|
|
|
|
$element['level'] = $line[0] === '-' ? 2 : 1;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
|
|
|
}
|
2013-11-10 00:23:56 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# indentation insensitive types
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
switch ($deindented_line[0])
|
|
|
|
{
|
|
|
|
case '<':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$position = strpos($deindented_line, '>');
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ($position > 1) # tag
|
|
|
|
{
|
|
|
|
$name = substr($deindented_line, 1, $position - 1);
|
2014-01-23 15:07:15 +04:00
|
|
|
$name = chop($name);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (substr($name, -1) === '/')
|
|
|
|
{
|
|
|
|
$self_closing = true;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$name = substr($name, 0, -1);
|
|
|
|
}
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$position = strpos($name, ' ');
|
2014-01-18 16:47:46 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ($position)
|
|
|
|
{
|
|
|
|
$name = substr($name, 0, $position);
|
|
|
|
}
|
2014-01-18 16:47:46 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ( ! ctype_alpha($name))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2014-01-18 16:47:46 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (in_array($name, $this->inline_tags))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$elements []= $element;
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($self_closing))
|
|
|
|
{
|
|
|
|
$element = array(
|
|
|
|
'type' => 'self-closing tag',
|
|
|
|
'text' => $deindented_line,
|
|
|
|
);
|
2014-01-18 16:47:46 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
unset($self_closing);
|
2014-01-18 16:47:46 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2014-01-18 16:47:46 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element = array(
|
|
|
|
'type' => 'block-level markup',
|
|
|
|
'text' => $deindented_line,
|
|
|
|
'start' => '<'.$name.'>',
|
|
|
|
'end' => '</'.$name.'>',
|
|
|
|
'depth' => 0,
|
|
|
|
);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (strpos($deindented_line, $element['end']))
|
|
|
|
{
|
|
|
|
$element['closed'] = true;
|
|
|
|
}
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case '>':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# quote
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (preg_match('/^>[ ]?(.*)/', $deindented_line, $matches))
|
|
|
|
{
|
|
|
|
$elements []= $element;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element = array(
|
|
|
|
'type' => 'blockquote',
|
|
|
|
'lines' => array(
|
|
|
|
$matches[1],
|
|
|
|
),
|
|
|
|
);
|
2013-11-04 11:28:50 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2013-11-04 11:28:50 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-04 11:28:50 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case '[':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# reference
|
2013-11-04 11:28:50 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (preg_match('/^\[(.+?)\]:[ ]*(.+?)(?:[ ]+[\'"](.+?)[\'"])?[ ]*$/', $deindented_line, $matches))
|
|
|
|
{
|
|
|
|
$label = strtolower($matches[1]);
|
2013-11-02 23:42:55 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$this->reference_map[$label] = array(
|
|
|
|
'»' => trim($matches[2], '<>'),
|
|
|
|
);
|
2013-12-26 23:53:48 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($matches[3]))
|
|
|
|
{
|
|
|
|
$this->reference_map[$label]['#'] = $matches[3];
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2013-11-04 11:28:50 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case '`':
|
|
|
|
case '~':
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# fenced code block
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (preg_match('/^([`]{3,}|[~]{3,})[ ]*(\S+)?[ ]*$/', $deindented_line, $matches))
|
|
|
|
{
|
|
|
|
$elements []= $element;
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element = array(
|
|
|
|
'type' => 'fenced block',
|
|
|
|
'text' => '',
|
|
|
|
'fence' => $matches[1],
|
|
|
|
);
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
isset($matches[2]) and $element['language'] = $matches[2];
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-17 18:52:31 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case '*':
|
|
|
|
case '+':
|
|
|
|
case '-':
|
|
|
|
case '_':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# hr
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (preg_match('/^([-*_])([ ]{0,2}\1){2,}[ ]*$/', $deindented_line))
|
|
|
|
{
|
|
|
|
$elements []= $element;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element = array(
|
|
|
|
'type' => 'hr',
|
|
|
|
);
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# li
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (preg_match('/^([ ]*)[*+-][ ](.*)/', $line, $matches))
|
|
|
|
{
|
|
|
|
$elements []= $element;
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element = array(
|
|
|
|
'type' => 'li',
|
|
|
|
'ordered' => false,
|
|
|
|
'indentation' => $matches[1],
|
|
|
|
'first' => true,
|
|
|
|
'last' => true,
|
|
|
|
'lines' => array(
|
|
|
|
preg_replace('/^[ ]{0,4}/', '', $matches[2]),
|
|
|
|
),
|
|
|
|
);
|
2013-11-17 14:48:01 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue 2;
|
|
|
|
}
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# li
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ($deindented_line[0] <= '9' and $deindented_line[0] >= '0' and preg_match('/^([ ]*)\d+[.][ ](.*)/', $line, $matches))
|
|
|
|
{
|
|
|
|
$elements []= $element;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element = array(
|
|
|
|
'type' => 'li',
|
|
|
|
'ordered' => true,
|
|
|
|
'indentation' => $matches[1],
|
|
|
|
'first' => true,
|
|
|
|
'last' => true,
|
|
|
|
'lines' => array(
|
|
|
|
preg_replace('/^[ ]{0,4}/', '', $matches[2]),
|
|
|
|
),
|
|
|
|
);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# paragraph
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ($element['type'] === 'paragraph')
|
|
|
|
{
|
|
|
|
if (isset($element['interrupted']))
|
|
|
|
{
|
|
|
|
$elements []= $element;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element['text'] = $line;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
unset($element['interrupted']);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->breaks_enabled and $element['text'] .= ' ';
|
2014-01-20 11:26:25 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element['text'] .= "\n".$line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$elements []= $element;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element = array(
|
|
|
|
'type' => 'paragraph',
|
|
|
|
'text' => $line,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$elements []= $element;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
unset($elements[0]);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
#
|
|
|
|
# ~
|
|
|
|
#
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup = '';
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
foreach ($elements as $element)
|
|
|
|
{
|
|
|
|
switch ($element['type'])
|
|
|
|
{
|
|
|
|
case 'paragraph':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$text = $this->parse_span_elements($element['text']);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ($context === 'li' and $markup === '')
|
|
|
|
{
|
|
|
|
if (isset($element['interrupted']))
|
|
|
|
{
|
|
|
|
$markup .= "\n".'<p>'.$text.'</p>'."\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$markup .= $text;
|
2014-01-22 13:04:35 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($elements[2]))
|
|
|
|
{
|
|
|
|
$markup .= "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$markup .= '<p>'.$text.'</p>'."\n";
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case 'blockquote':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$text = $this->parse_block_elements($element['lines']);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '<blockquote>'."\n".$text.'</blockquote>'."\n";
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case 'code block':
|
2014-01-20 01:34:20 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$text = htmlspecialchars($element['text'], ENT_NOQUOTES, 'UTF-8');
|
2014-01-20 01:34:20 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '<pre><code>'.$text.'</code></pre>'."\n";
|
2014-01-20 01:34:20 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2014-01-20 01:34:20 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case 'fenced block':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$text = htmlspecialchars($element['text'], ENT_NOQUOTES, 'UTF-8');
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '<pre><code';
|
2014-01-20 01:34:20 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
isset($element['language']) and $markup .= ' class="language-'.$element['language'].'"';
|
2013-12-03 01:26:43 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '>'.$text.'</code></pre>'."\n";
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case 'heading':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$text = $this->parse_span_elements($element['text']);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '<h'.$element['level'].'>'.$text.'</h'.$element['level'].'>'."\n";
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case 'hr':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '<hr />'."\n";
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-02 23:42:55 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case 'li':
|
2013-11-17 00:04:26 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($element['first']))
|
|
|
|
{
|
|
|
|
$type = $element['ordered'] ? 'ol' : 'ul';
|
2013-11-17 00:04:26 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '<'.$type.'>'."\n";
|
|
|
|
}
|
2013-11-17 00:04:26 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($element['interrupted']) and ! isset($element['last']))
|
|
|
|
{
|
|
|
|
$element['lines'] []= '';
|
|
|
|
}
|
2013-11-17 00:04:26 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$text = $this->parse_block_elements($element['lines'], 'li');
|
2013-11-17 00:04:26 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '<li>'.$text.'</li>'."\n";
|
2013-11-17 00:04:26 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($element['last']))
|
|
|
|
{
|
|
|
|
$type = $element['ordered'] ? 'ol' : 'ul';
|
2014-01-22 03:03:21 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '</'.$type.'>'."\n";
|
|
|
|
}
|
2013-11-17 00:04:26 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case 'block-level markup':
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= $element['text']."\n";
|
2013-12-18 16:32:49 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-17 00:04:26 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
default:
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= $element['text']."\n";
|
|
|
|
}
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
return $markup;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
private function parse_span_elements($text, $markers = array(" \n", '![', '&', '*', '<', '[', '\\', '_', '`', 'http', '~~'))
|
|
|
|
{
|
|
|
|
if (isset($text[1]) === false or $markers === array())
|
|
|
|
{
|
|
|
|
return $text;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# ~
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup = '';
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
while ($markers)
|
|
|
|
{
|
|
|
|
$closest_marker = null;
|
|
|
|
$closest_marker_index = 0;
|
|
|
|
$closest_marker_position = null;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
foreach ($markers as $index => $marker)
|
|
|
|
{
|
|
|
|
$marker_position = strpos($text, $marker);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ($marker_position === false)
|
|
|
|
{
|
|
|
|
unset($markers[$index]);
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
continue;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ($closest_marker === null or $marker_position < $closest_marker_position)
|
|
|
|
{
|
|
|
|
$closest_marker = $marker;
|
|
|
|
$closest_marker_index = $index;
|
|
|
|
$closest_marker_position = $marker_position;
|
|
|
|
}
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# ~
|
2013-09-20 02:12:40 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ($closest_marker === null or isset($text[$closest_marker_position + 1]) === false)
|
|
|
|
{
|
|
|
|
$markup .= $text;
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$markup .= substr($text, 0, $closest_marker_position);
|
|
|
|
}
|
2013-09-20 02:12:40 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$text = substr($text, $closest_marker_position);
|
2013-09-20 02:12:40 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# ~
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
unset($markers[$closest_marker_index]);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# ~
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
switch ($closest_marker)
|
|
|
|
{
|
|
|
|
case " \n":
|
2014-01-20 11:26:25 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '<br />'."\n";
|
2014-01-20 11:26:25 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = 3;
|
2014-01-20 11:26:25 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2014-01-20 11:26:25 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case '![':
|
|
|
|
case '[':
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (strpos($text, ']') and preg_match('/\[((?:[^][]|(?R))*)\]/', $text, $matches))
|
|
|
|
{
|
|
|
|
$element = array(
|
|
|
|
'!' => $text[0] === '!',
|
|
|
|
'a' => $matches[1],
|
|
|
|
);
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = strlen($matches[0]);
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$element['!'] and $offset++;
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$remaining_text = substr($text, $offset);
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ($remaining_text[0] === '(' and preg_match('/\([ ]*(.*?)(?:[ ]+[\'"](.+?)[\'"])?[ ]*\)/', $remaining_text, $matches))
|
|
|
|
{
|
|
|
|
$element['»'] = $matches[1];
|
2013-07-11 00:22:16 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($matches[2]))
|
|
|
|
{
|
|
|
|
$element['#'] = $matches[2];
|
|
|
|
}
|
2013-12-26 23:53:48 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset += strlen($matches[0]);
|
|
|
|
}
|
|
|
|
elseif ($this->reference_map)
|
|
|
|
{
|
|
|
|
$reference = $element['a'];
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (preg_match('/^\s*\[(.*?)\]/', $remaining_text, $matches))
|
|
|
|
{
|
|
|
|
$reference = $matches[1] ? $matches[1] : $element['a'];
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset += strlen($matches[0]);
|
|
|
|
}
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$reference = strtolower($reference);
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($this->reference_map[$reference]))
|
|
|
|
{
|
|
|
|
$element['»'] = $this->reference_map[$reference]['»'];
|
2013-12-26 23:53:48 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($this->reference_map[$reference]['#']))
|
|
|
|
{
|
|
|
|
$element['#'] = $this->reference_map[$reference]['#'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unset($element);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unset($element);
|
|
|
|
}
|
|
|
|
}
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($element))
|
|
|
|
{
|
|
|
|
$element['»'] = str_replace('&', '&', $element['»']);
|
|
|
|
$element['»'] = str_replace('<', '<', $element['»']);
|
2013-12-24 18:05:13 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if ($element['!'])
|
|
|
|
{
|
|
|
|
$markup .= '<img alt="'.$element['a'].'" src="'.$element['»'].'"';
|
2014-01-21 00:19:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
isset($element['#']) and $markup .= ' title="'.$element['#'].'"';
|
2014-01-21 00:19:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= ' />';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$element['a'] = $this->parse_span_elements($element['a'], $markers);
|
2013-12-24 18:05:13 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '<a href="'.$element['»'].'"';
|
2014-01-21 00:49:10 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
isset($element['#']) and $markup .= ' title="'.$element['#'].'"';
|
2014-01-21 00:49:10 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '>'.$element['a'].'</a>';
|
|
|
|
}
|
2013-12-24 18:05:13 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
unset($element);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$markup .= $closest_marker;
|
2013-07-11 00:22:16 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = $closest_marker === '![' ? 2 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '&':
|
|
|
|
|
|
|
|
if (preg_match('/^&#?\w+;/', $text, $matches))
|
|
|
|
{
|
|
|
|
$markup .= $matches[0];
|
|
|
|
|
|
|
|
$offset = strlen($matches[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$markup .= '&';
|
|
|
|
|
|
|
|
$offset = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '*':
|
|
|
|
case '_':
|
|
|
|
|
|
|
|
if ($text[1] === $closest_marker and preg_match($this->strong_regex[$closest_marker], $text, $matches))
|
|
|
|
{
|
|
|
|
$matches[1] = $this->parse_span_elements($matches[1], $markers);
|
|
|
|
|
|
|
|
$markup .= '<strong>'.$matches[1].'</strong>';
|
|
|
|
}
|
|
|
|
elseif (preg_match($this->em_regex[$closest_marker], $text, $matches))
|
|
|
|
{
|
|
|
|
$matches[1] = $this->parse_span_elements($matches[1], $markers);
|
|
|
|
|
|
|
|
$markup .= '<em>'.$matches[1].'</em>';
|
|
|
|
}
|
|
|
|
elseif ($text[1] === $closest_marker and preg_match($this->strong_em_regex[$closest_marker], $text, $matches))
|
|
|
|
{
|
|
|
|
$matches[2] = $this->parse_span_elements($matches[2], $markers);
|
|
|
|
|
|
|
|
$matches[1] and $matches[1] = $this->parse_span_elements($matches[1], $markers);
|
|
|
|
$matches[3] and $matches[3] = $this->parse_span_elements($matches[3], $markers);
|
|
|
|
|
|
|
|
$markup .= '<strong>'.$matches[1].'<em>'.$matches[2].'</em>'.$matches[3].'</strong>';
|
|
|
|
}
|
|
|
|
elseif (preg_match($this->em_strong_regex[$closest_marker], $text, $matches))
|
|
|
|
{
|
|
|
|
$matches[2] = $this->parse_span_elements($matches[2], $markers);
|
2013-12-06 03:43:55 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$matches[1] and $matches[1] = $this->parse_span_elements($matches[1], $markers);
|
|
|
|
$matches[3] and $matches[3] = $this->parse_span_elements($matches[3], $markers);
|
|
|
|
|
|
|
|
$markup .= '<em>'.$matches[1].'<strong>'.$matches[2].'</strong>'.$matches[3].'</em>';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($matches) and $matches)
|
|
|
|
{
|
|
|
|
$offset = strlen($matches[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$markup .= $closest_marker;
|
2013-12-06 03:43:55 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = 1;
|
|
|
|
}
|
2013-12-06 03:43:55 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-12-06 03:43:55 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case '<':
|
2013-12-06 03:43:55 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (strpos($text, '>') !== false)
|
|
|
|
{
|
|
|
|
if ($text[1] === 'h' and preg_match('/^<(https?:[\/]{2}[^\s]+?)>/i', $text, $matches))
|
|
|
|
{
|
|
|
|
$element_url = $matches[1];
|
|
|
|
$element_url = str_replace('&', '&', $element_url);
|
|
|
|
$element_url = str_replace('<', '<', $element_url);
|
2013-12-06 02:29:51 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '<a href="'.$element_url.'">'.$element_url.'</a>';
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = strlen($matches[0]);
|
|
|
|
}
|
|
|
|
elseif (strpos($text, '@') > 1 and preg_match('/<(\S+?@\S+?)>/', $text, $matches))
|
|
|
|
{
|
|
|
|
$markup .= '<a href="mailto:'.$matches[1].'">'.$matches[1].'</a>';
|
2014-01-21 16:23:04 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = strlen($matches[0]);
|
|
|
|
}
|
|
|
|
elseif (preg_match('/^<\/?\w.*?>/', $text, $matches))
|
|
|
|
{
|
|
|
|
$markup .= $matches[0];
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = strlen($matches[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$markup .= '<';
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$markup .= '<';
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = 1;
|
|
|
|
}
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case '\\':
|
2014-01-20 00:49:43 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (in_array($text[1], $this->special_characters))
|
|
|
|
{
|
|
|
|
$markup .= $text[1];
|
2014-01-20 00:49:43 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$markup .= '\\';
|
2014-01-20 00:49:43 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = 1;
|
|
|
|
}
|
2014-01-20 00:49:43 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2014-01-20 00:49:43 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case '`':
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (preg_match('/^(`+)(.+?)\1(?!`)/', $text, $matches))
|
|
|
|
{
|
|
|
|
$element_text = $matches[2];
|
|
|
|
$element_text = htmlspecialchars($element_text, ENT_NOQUOTES, 'UTF-8');
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '<code>'.$element_text.'</code>';
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = strlen($matches[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$markup .= '`';
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = 1;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case 'http':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (preg_match('/^https?:[\/]{2}[^\s]+\b/i', $text, $matches))
|
|
|
|
{
|
|
|
|
$element_url = $matches[0];
|
|
|
|
$element_url = str_replace('&', '&', $element_url);
|
|
|
|
$element_url = str_replace('<', '<', $element_url);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '<a href="'.$element_url.'">'.$element_url.'</a>';
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = strlen($matches[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$markup .= 'http';
|
2013-11-22 02:20:45 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = 4;
|
|
|
|
}
|
2013-11-22 02:20:45 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
case '~~':
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (preg_match('/^~~(?=\S)(.+?)(?<=\S)~~/', $text, $matches))
|
|
|
|
{
|
|
|
|
$matches[1] = $this->parse_span_elements($matches[1], $markers);
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markup .= '<del>'.$matches[1].'</del>';
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = strlen($matches[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$markup .= '~~';
|
2013-11-21 15:39:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$offset = 2;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
break;
|
|
|
|
}
|
2013-12-24 05:17:23 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
if (isset($offset))
|
|
|
|
{
|
|
|
|
$text = substr($text, $offset);
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
$markers[$closest_marker_index] = $closest_marker;
|
|
|
|
}
|
2013-11-09 01:40:00 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
return $markup;
|
|
|
|
}
|
2014-01-18 17:10:24 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
#
|
|
|
|
# Read-only
|
|
|
|
#
|
2014-01-18 17:10:24 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
private $inline_tags = array(
|
|
|
|
'a', 'abbr', 'acronym', 'b', 'bdo', 'big', 'br', 'button',
|
|
|
|
'cite', 'code', 'dfn', 'em', 'i', 'img', 'input', 'kbd',
|
|
|
|
'label', 'map', 'object', 'q', 'samp', 'script', 'select', 'small',
|
|
|
|
'span', 'strong', 'sub', 'sup', 'textarea', 'tt', 'var',
|
|
|
|
);
|
2014-01-18 17:10:24 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
private $special_characters = array('\\', '`', '*', '_', '{', '}', '[', ']', '(', ')', '>', '#', '+', '-', '.', '!');
|
2014-01-20 00:49:43 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
# ~
|
2014-01-18 17:10:24 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
private $strong_regex = array(
|
|
|
|
'*' => '/^[*]{2}([^*]+?)[*]{2}(?![*])/s',
|
|
|
|
'_' => '/^__([^_]+?)__(?!_)/s',
|
|
|
|
);
|
2014-01-18 17:10:24 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
private $em_regex = array(
|
|
|
|
'*' => '/^[*]([^*]+?)[*](?![*])/s',
|
|
|
|
'_' => '/^_([^_]+?)[_](?![_])\b/s',
|
|
|
|
);
|
2014-01-18 17:10:24 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
private $strong_em_regex = array(
|
|
|
|
'*' => '/^[*]{2}(.*?)[*](.+?)[*](.*?)[*]{2}/s',
|
|
|
|
'_' => '/^__(.*?)_(.+?)_(.*?)__/s',
|
|
|
|
);
|
2014-01-18 17:10:24 +04:00
|
|
|
|
2014-01-23 02:57:36 +04:00
|
|
|
private $em_strong_regex = array(
|
|
|
|
'*' => '/^[*](.*?)[*]{2}(.+?)[*]{2}(.*?)[*]/s',
|
|
|
|
'_' => '/^_(.*?)__(.+?)__(.*?)_/s',
|
|
|
|
);
|
2013-12-24 05:17:23 +04:00
|
|
|
}
|