breaks_enabled = $breaks_enabled; return $this; } # # Fields # private $reference_map = array(); # # Public Methods # function parse($text) { # removes \r characters $text = str_replace("\r\n", "\n", $text); $text = str_replace("\r", "\n", $text); # replaces tabs with spaces $text = str_replace("\t", ' ', $text); # ~ $text = trim($text, "\n"); $lines = explode("\n", $text); $text = $this->parse_block_elements($lines); $text = rtrim($text, "\n"); return $text; } # # Private Methods # private function parse_block_elements(array $lines, $context = '') { $elements = array(); $element = array( 'type' => '', ); foreach ($lines as $line) { # fenced elements switch ($element['type']) { case 'fenced block': if ( ! isset($element['closed'])) { if (preg_match('/^[ ]*'.$element['fence'][0].'{3,}[ ]*$/', $line)) { $element['closed'] = true; } else { $element['text'] !== '' and $element['text'] .= "\n"; $element['text'] .= $line; } continue 2; } break; case 'block-level markup': if ( ! isset($element['closed'])) { if (strpos($line, $element['start']) !== false) # opening tag { $element['depth']++; } if (strpos($line, $element['end']) !== false) # closing tag { $element['depth'] > 0 ? $element['depth']-- : $element['closed'] = true; } $element['text'] .= "\n".$line; continue 2; } break; } # * $deindented_line = ltrim($line); if ($deindented_line === '') { $element['interrupted'] = true; continue; } # composite elements switch ($element['type']) { case 'blockquote': if ( ! isset($element['interrupted'])) { $line = preg_replace('/^[ ]*>[ ]?/', '', $line); $element['lines'] []= $line; continue 2; } break; case 'li': if (preg_match('/^([ ]{0,3})(\d+[.]|[*+-])[ ](.*)/', $line, $matches)) { if ($element['indentation'] !== $matches[1]) { $element['lines'] []= $line; } else { unset($element['last']); $elements []= $element; unset($element['first']); $element['last'] = true; $element['lines'] = array( preg_replace('/^[ ]{0,4}/', '', $matches[3]), ); } continue 2; } if (isset($element['interrupted'])) { if ($line[0] === ' ') { $element['lines'] []= ''; $line = preg_replace('/^[ ]{0,4}/', '', $line); $element['lines'] []= $line; unset($element['interrupted']); continue 2; } } else { $line = preg_replace('/^[ ]{0,4}/', '', $line); $element['lines'] []= $line; continue 2; } break; } # indentation sensitive types switch ($line[0]) { case ' ': # code block if (isset($line[3]) and $line[3] === ' ' and $line[2] === ' ' and $line[1] === ' ') { $code_line = substr($line, 4); if ($element['type'] === 'code block') { if (isset($element['interrupted'])) { $element['text'] .= "\n"; unset ($element['interrupted']); } $element['text'] .= "\n".$code_line; } else { $elements []= $element; $element = array( 'type' => 'code block', 'text' => $code_line, ); } continue 2; } break; case '#': # atx heading (#) if (isset($line[1])) { $elements []= $element; $level = 1; while (isset($line[$level]) and $line[$level] === '#') { $level++; } $element = array( 'type' => 'heading', 'text' => trim($line, '# '), 'level' => $level, ); continue 2; } break; case '-': case '=': # setext heading if ($element['type'] === 'paragraph' and isset($element['interrupted']) === false) { $chopped_line = rtrim($line); $i = 1; while (isset($chopped_line[$i])) { if ($chopped_line[$i] !== $line[0]) { break 2; } $i++; } $element['type'] = 'heading'; $element['level'] = $line[0] === '-' ? 2 : 1; continue 2; } break; } # indentation insensitive types switch ($deindented_line[0]) { case '<': $position = strpos($deindented_line, '>'); if ($position > 1) # tag { $name = substr($deindented_line, 1, $position - 1); $name = rtrim($name); if (substr($name, -1) === '/') { $self_closing = true; $name = substr($name, 0, -1); } $position = strpos($name, ' '); if ($position) { $name = substr($name, 0, $position); } if ( ! ctype_alpha($name)) { break; } if (in_array($name, $this->inline_tags)) { break; } $elements []= $element; if (isset($self_closing)) { $element = array( 'type' => 'self-closing tag', 'text' => $deindented_line, ); unset($self_closing); continue 2; } $element = array( 'type' => 'block-level markup', 'text' => $deindented_line, 'start' => '<'.$name.'>', 'end' => ''.$name.'>', 'depth' => 0, ); if (strpos($deindented_line, $element['end'])) { $element['closed'] = true; } continue 2; } break; case '>': # quote if (preg_match('/^>[ ]?(.*)/', $deindented_line, $matches)) { $elements []= $element; $element = array( 'type' => 'blockquote', 'lines' => array( $matches[1], ), ); continue 2; } break; case '[': # reference if (preg_match('/^\[(.+?)\]:[ ]*(.+?)(?:[ ]+[\'"](.+?)[\'"])?[ ]*$/', $deindented_line, $matches)) { $label = strtolower($matches[1]); $this->reference_map[$label] = array( '»' => trim($matches[2], '<>'), ); if (isset($matches[3])) { $this->reference_map[$label]['#'] = $matches[3]; } continue 2; } break; case '`': case '~': # fenced code block if (preg_match('/^([`]{3,}|[~]{3,})[ ]*(\S+)?[ ]*$/', $deindented_line, $matches)) { $elements []= $element; $element = array( 'type' => 'fenced block', 'text' => '', 'fence' => $matches[1], ); isset($matches[2]) and $element['language'] = $matches[2]; continue 2; } break; case '*': case '+': case '-': case '_': # hr if (preg_match('/^([-*_])([ ]{0,2}\1){2,}[ ]*$/', $deindented_line)) { $elements []= $element; $element = array( 'type' => 'hr', ); continue 2; } # li if (preg_match('/^([ ]*)[*+-][ ](.*)/', $line, $matches)) { $elements []= $element; $element = array( 'type' => 'li', 'ordered' => false, 'indentation' => $matches[1], 'first' => true, 'last' => true, 'lines' => array( preg_replace('/^[ ]{0,4}/', '', $matches[2]), ), ); continue 2; } } # li if ($deindented_line[0] <= '9' and $deindented_line[0] >= '0' and preg_match('/^([ ]*)\d+[.][ ](.*)/', $line, $matches)) { $elements []= $element; $element = array( 'type' => 'li', 'ordered' => true, 'indentation' => $matches[1], 'first' => true, 'last' => true, 'lines' => array( preg_replace('/^[ ]{0,4}/', '', $matches[2]), ), ); continue; } # paragraph if ($element['type'] === 'paragraph') { if (isset($element['interrupted'])) { $elements []= $element; $element['text'] = $line; unset($element['interrupted']); } else { $this->breaks_enabled and $element['text'] .= ' '; $element['text'] .= "\n".$line; } } else { $elements []= $element; $element = array( 'type' => 'paragraph', 'text' => $line, ); } } $elements []= $element; unset($elements[0]); # # ~ # $markup = ''; foreach ($elements as $element) { switch ($element['type']) { case 'paragraph': $text = $this->parse_span_elements($element['text']); if ($context === 'li' and $markup === '') { if (isset($element['interrupted'])) { $markup .= "\n".'
'.$text.'
'."\n"; } else { $markup .= $text; if (isset($elements[2])) { $markup .= "\n"; } } } else { $markup .= ''.$text.'
'."\n"; } break; case 'blockquote': $text = $this->parse_block_elements($element['lines']); $markup .= ''."\n".$text.''."\n"; break; case 'code block': $text = htmlspecialchars($element['text'], ENT_NOQUOTES, 'UTF-8'); $markup .= '
'.$text.'
'."\n";
break;
case 'fenced block':
$text = htmlspecialchars($element['text'], ENT_NOQUOTES, 'UTF-8');
$markup .= '
'."\n";
break;
case 'heading':
$text = $this->parse_span_elements($element['text']);
$markup .= ''.$element_text.'
';
$offset = strlen($matches[0]);
}
else
{
$markup .= '`';
$offset = 1;
}
break;
case 'http':
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);
$markup .= ''.$element_url.'';
$offset = strlen($matches[0]);
}
else
{
$markup .= 'http';
$offset = 4;
}
break;
case '~~':
if (preg_match('/^~~(?=\S)(.+?)(?<=\S)~~/', $text, $matches))
{
$matches[1] = $this->parse_span_elements($matches[1], $markers);
$markup .= '