1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00
parsedown/src/Parsedown.php

1815 lines
48 KiB
PHP
Raw Normal View History

2013-11-09 01:40:00 +04:00
<?php
2018-04-17 16:44:38 +03:00
namespace Erusev\Parsedown;
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
#
2014-01-24 03:28:03 +04:00
# For the full license information, view the LICENSE file that was distributed
# with this source code.
2013-11-09 01:40:00 +04:00
#
#
2013-07-11 00:22:16 +04:00
class Parsedown
{
2014-04-17 11:59:35 +04:00
# ~
2013-11-09 01:40:00 +04:00
2018-04-17 16:44:38 +03:00
const version = '2.0.0-dev';
2015-01-19 18:11:13 +03:00
# ~
2018-12-04 19:24:25 +03:00
public function text($text)
{
$Elements = $this->textElements($text);
# convert to markup
$markup = $this->elements($Elements);
# trim line breaks
2018-12-04 19:24:25 +03:00
$markup = \trim($markup, "\n");
return $markup;
}
protected function textElements($text)
{
2014-05-11 23:31:02 +04:00
# make sure no definitions are set
2018-12-04 19:24:25 +03:00
$this->DefinitionData = [];
2014-05-11 23:31:02 +04:00
2014-01-24 02:41:45 +04:00
# standardize line breaks
2018-12-04 19:24:25 +03:00
$text = \str_replace(["\r\n", "\r"], "\n", $text);
2013-11-09 01:40:00 +04:00
2014-01-24 02:41:45 +04:00
# remove surrounding line breaks
2018-12-04 19:24:25 +03:00
$text = \trim($text, "\n");
2013-11-09 01:40:00 +04:00
2014-01-24 02:41:45 +04:00
# split text into lines
2018-12-04 19:24:25 +03:00
$lines = \explode("\n", $text);
2013-11-09 01:40:00 +04:00
# iterate through lines to identify blocks
return $this->linesElements($lines);
}
2013-11-09 01:40:00 +04:00
#
2014-04-17 11:59:35 +04:00
# Setters
#
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
public function setBreaksEnabled($breaksEnabled)
{
2014-04-17 11:59:35 +04:00
$this->breaksEnabled = $breaksEnabled;
2013-11-09 01:40:00 +04:00
2014-04-17 11:59:35 +04:00
return $this;
}
2013-11-09 01:40:00 +04:00
2015-01-18 20:38:57 +03:00
protected $breaksEnabled;
2014-09-22 03:36:42 +04:00
2018-12-04 19:24:25 +03:00
public function setMarkupEscaped($markupEscaped)
{
2014-09-22 03:36:42 +04:00
$this->markupEscaped = $markupEscaped;
return $this;
}
2015-01-18 20:38:57 +03:00
protected $markupEscaped;
2015-01-08 17:13:55 +03:00
2018-12-04 19:24:25 +03:00
public function setUrlsLinked($urlsLinked)
2015-01-08 17:13:55 +03:00
{
$this->urlsLinked = $urlsLinked;
return $this;
}
2015-01-18 20:38:57 +03:00
protected $urlsLinked = true;
2018-12-04 19:24:25 +03:00
public function setSafeMode($safeMode)
2015-01-21 05:50:36 +03:00
{
$this->safeMode = (bool) $safeMode;
2015-01-21 05:50:36 +03:00
return $this;
}
protected $safeMode;
2015-01-21 05:50:36 +03:00
2018-12-04 19:24:25 +03:00
public function setStrictMode($strictMode)
2018-03-29 19:44:47 +03:00
{
$this->strictMode = (bool) $strictMode;
2018-03-29 19:44:47 +03:00
return $this;
}
protected $strictMode;
2018-03-29 19:44:47 +03:00
2018-12-04 19:24:25 +03:00
protected $safeLinksWhitelist = [
'http://',
'https://',
'ftp://',
'ftps://',
'mailto:',
2018-10-03 02:38:21 +03:00
'tel:',
'data:image/png;base64,',
'data:image/gif;base64,',
2017-05-02 21:55:03 +03:00
'data:image/jpeg;base64,',
2017-05-05 23:32:27 +03:00
'irc:',
'ircs:',
'git:',
'ssh:',
'news:',
'steam:',
2018-12-04 19:24:25 +03:00
];
2014-04-17 11:59:35 +04:00
#
2014-05-05 15:39:40 +04:00
# Lines
2014-04-17 11:59:35 +04:00
#
2018-12-04 19:24:25 +03:00
protected $BlockTypes = [
'#' => ['Header'],
'*' => ['Rule', 'List'],
'+' => ['List'],
'-' => ['SetextHeader', 'Table', 'Rule', 'List'],
'0' => ['List'],
'1' => ['List'],
'2' => ['List'],
'3' => ['List'],
'4' => ['List'],
'5' => ['List'],
'6' => ['List'],
'7' => ['List'],
'8' => ['List'],
'9' => ['List'],
':' => ['Table'],
'<' => ['Comment', 'Markup'],
'=' => ['SetextHeader'],
'>' => ['Quote'],
'[' => ['Reference'],
'_' => ['Rule'],
'`' => ['FencedCode'],
'|' => ['Table'],
'~' => ['FencedCode'],
];
2013-11-09 01:40:00 +04:00
2014-05-05 15:39:40 +04:00
# ~
2018-12-04 19:24:25 +03:00
protected $unmarkedBlockTypes = [
2015-01-05 00:34:19 +03:00
'Code',
2018-12-04 19:24:25 +03:00
];
2014-05-05 15:39:40 +04:00
#
# Blocks
#
protected function lines(array $lines)
2018-03-21 05:18:34 +03:00
{
return $this->elements($this->linesElements($lines));
}
protected function linesElements(array $lines)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
$Elements = [];
2014-04-17 11:59:35 +04:00
$CurrentBlock = null;
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
foreach ($lines as $line) {
if (\chop($line) === '') {
if (isset($CurrentBlock)) {
$CurrentBlock['interrupted'] = (
isset($CurrentBlock['interrupted'])
2018-04-09 16:13:10 +03:00
? $CurrentBlock['interrupted'] + 1 : 1
);
2014-04-17 11:59:35 +04:00
}
2014-04-28 03:27:05 +04:00
continue;
}
2018-12-04 19:24:25 +03:00
while (($beforeTab = \strstr($line, "\t", true)) !== false) {
$shortage = 4 - \mb_strlen($beforeTab, 'utf-8') % 4;
2015-01-10 03:45:51 +03:00
2018-04-09 02:46:26 +03:00
$line = $beforeTab
2018-12-04 19:24:25 +03:00
. \str_repeat(' ', $shortage)
. \substr($line, \strlen($beforeTab) + 1)
2018-04-09 02:46:26 +03:00
;
2015-01-10 03:45:51 +03:00
}
2018-12-04 19:24:25 +03:00
$indent = \strspn($line, ' ');
2018-12-04 19:24:25 +03:00
$text = $indent > 0 ? \substr($line, $indent) : $line;
2014-04-17 11:59:35 +04:00
# ~
2018-12-04 19:24:25 +03:00
$Line = ['body' => $line, 'indent' => $indent, 'text' => $text];
2014-05-05 14:46:26 +04:00
# ~
2018-12-04 19:24:25 +03:00
if (isset($CurrentBlock['continuable'])) {
$methodName = 'block' . $CurrentBlock['type'] . 'Continue';
$Block = $this->$methodName($Line, $CurrentBlock);
2018-12-04 19:24:25 +03:00
if (isset($Block)) {
2014-04-17 11:59:35 +04:00
$CurrentBlock = $Block;
2014-04-17 11:59:35 +04:00
continue;
2018-12-04 19:24:25 +03:00
} else {
if ($this->isBlockCompletable($CurrentBlock['type'])) {
$methodName = 'block' . $CurrentBlock['type'] . 'Complete';
$CurrentBlock = $this->$methodName($CurrentBlock);
}
2014-04-17 11:59:35 +04:00
}
}
2014-04-17 11:59:35 +04:00
# ~
2018-04-09 17:11:45 +03:00
$marker = $text[0];
2013-11-09 01:40:00 +04:00
2014-04-27 02:54:52 +04:00
# ~
$blockTypes = $this->unmarkedBlockTypes;
2018-12-04 19:24:25 +03:00
if (isset($this->BlockTypes[$marker])) {
foreach ($this->BlockTypes[$marker] as $blockType) {
$blockTypes []= $blockType;
2014-04-17 11:59:35 +04:00
}
}
2014-04-17 11:59:35 +04:00
#
# ~
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
foreach ($blockTypes as $blockType) {
$Block = $this->{"block$blockType"}($Line, $CurrentBlock);
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
if (isset($Block)) {
2014-04-17 11:59:35 +04:00
$Block['type'] = $blockType;
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
if (! isset($Block['identified'])) {
if (isset($CurrentBlock)) {
$Elements[] = $this->extractElement($CurrentBlock);
}
2014-04-17 11:59:35 +04:00
$Block['identified'] = true;
}
2013-11-10 00:23:56 +04:00
2018-12-04 19:24:25 +03:00
if ($this->isBlockContinuable($blockType)) {
2015-07-02 01:01:14 +03:00
$Block['continuable'] = true;
}
2014-04-17 11:59:35 +04:00
$CurrentBlock = $Block;
2013-11-09 01:40:00 +04:00
2014-04-17 11:59:35 +04:00
continue 2;
}
}
2014-04-17 11:59:35 +04:00
# ~
2018-12-04 19:24:25 +03:00
if (isset($CurrentBlock) and $CurrentBlock['type'] === 'Paragraph') {
$Block = $this->paragraphContinue($Line, $CurrentBlock);
}
2018-12-04 19:24:25 +03:00
if (isset($Block)) {
$CurrentBlock = $Block;
2018-12-04 19:24:25 +03:00
} else {
if (isset($CurrentBlock)) {
$Elements[] = $this->extractElement($CurrentBlock);
}
2014-04-17 11:59:35 +04:00
2015-01-05 00:34:19 +03:00
$CurrentBlock = $this->paragraph($Line);
2014-05-11 23:31:02 +04:00
2014-05-12 01:34:47 +04:00
$CurrentBlock['identified'] = true;
2014-04-17 11:59:35 +04:00
}
}
# ~
2018-12-04 19:24:25 +03:00
if (isset($CurrentBlock['continuable']) and $this->isBlockCompletable($CurrentBlock['type'])) {
$methodName = 'block' . $CurrentBlock['type'] . 'Complete';
$CurrentBlock = $this->$methodName($CurrentBlock);
}
# ~
2018-12-04 19:24:25 +03:00
if (isset($CurrentBlock)) {
$Elements[] = $this->extractElement($CurrentBlock);
2015-01-11 15:35:09 +03:00
}
2014-04-17 11:59:35 +04:00
# ~
2018-03-21 05:18:34 +03:00
return $Elements;
2014-04-17 11:59:35 +04:00
}
protected function extractElement(array $Component)
{
2018-12-04 19:24:25 +03:00
if (! isset($Component['element'])) {
if (isset($Component['markup'])) {
$Component['element'] = ['rawHtml' => $Component['markup']];
} elseif (isset($Component['hidden'])) {
$Component['element'] = [];
}
}
return $Component['element'];
}
2015-12-19 06:45:14 +03:00
protected function isBlockContinuable($Type)
{
2018-12-04 19:24:25 +03:00
return \method_exists($this, 'block' . $Type . 'Continue');
}
2015-12-19 06:45:14 +03:00
protected function isBlockCompletable($Type)
{
2018-12-04 19:24:25 +03:00
return \method_exists($this, 'block' . $Type . 'Complete');
}
2014-04-17 11:59:35 +04:00
#
2014-05-05 15:39:40 +04:00
# Code
2014-02-23 20:55:34 +04:00
2015-01-05 00:34:19 +03:00
protected function blockCode($Line, $Block = null)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
if (isset($Block) and $Block['type'] === 'Paragraph' and ! isset($Block['interrupted'])) {
2014-12-15 01:52:03 +03:00
return;
}
2018-12-04 19:24:25 +03:00
if ($Line['indent'] >= 4) {
$text = \substr($Line['body'], 4);
2014-05-05 15:39:40 +04:00
2018-12-04 19:24:25 +03:00
$Block = [
'element' => [
2014-05-05 15:39:40 +04:00
'name' => 'pre',
2018-12-04 19:24:25 +03:00
'element' => [
2014-05-05 15:39:40 +04:00
'name' => 'code',
'text' => $text,
2018-12-04 19:24:25 +03:00
],
],
];
2014-02-23 20:55:34 +04:00
2014-04-17 11:59:35 +04:00
return $Block;
}
}
2014-02-23 20:55:34 +04:00
2015-01-05 00:34:19 +03:00
protected function blockCodeContinue($Line, $Block)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
if ($Line['indent'] >= 4) {
if (isset($Block['interrupted'])) {
$Block['element']['element']['text'] .= \str_repeat("\n", $Block['interrupted']);
2014-05-05 15:39:40 +04:00
unset($Block['interrupted']);
2014-04-17 11:59:35 +04:00
}
2013-11-09 01:40:00 +04:00
$Block['element']['element']['text'] .= "\n";
2018-12-04 19:24:25 +03:00
$text = \substr($Line['body'], 4);
2014-05-05 15:39:40 +04:00
$Block['element']['element']['text'] .= $text;
2013-11-09 01:40:00 +04:00
2014-04-17 11:59:35 +04:00
return $Block;
}
}
2014-01-17 02:36:11 +04:00
protected function blockCodeComplete($Block)
{
return $Block;
}
2014-05-14 14:14:49 +04:00
#
# Comment
2015-01-05 00:34:19 +03:00
protected function blockComment($Line)
2014-05-14 14:14:49 +04:00
{
2018-12-04 19:24:25 +03:00
if ($this->markupEscaped or $this->safeMode) {
return;
}
2018-12-04 19:24:25 +03:00
if (\strpos($Line['text'], '<!--') === 0) {
$Block = [
'element' => [
2018-03-21 05:18:34 +03:00
'rawHtml' => $Line['body'],
'autobreak' => true,
2018-12-04 19:24:25 +03:00
],
];
2014-05-14 14:14:49 +04:00
2018-12-04 19:24:25 +03:00
if (\strpos($Line['text'], '-->') !== false) {
2014-05-14 14:14:49 +04:00
$Block['closed'] = true;
}
return $Block;
}
}
2015-01-05 00:34:19 +03:00
protected function blockCommentContinue($Line, array $Block)
2014-05-14 14:14:49 +04:00
{
2018-12-04 19:24:25 +03:00
if (isset($Block['closed'])) {
2014-05-14 14:14:49 +04:00
return;
}
$Block['element']['rawHtml'] .= "\n" . $Line['body'];
2014-05-14 14:14:49 +04:00
2018-12-04 19:24:25 +03:00
if (\strpos($Line['text'], '-->') !== false) {
2014-05-14 14:14:49 +04:00
$Block['closed'] = true;
}
return $Block;
}
2014-04-17 11:59:35 +04:00
#
# Fenced Code
2014-02-23 20:55:34 +04:00
2015-01-05 00:34:19 +03:00
protected function blockFencedCode($Line)
2014-04-17 11:59:35 +04:00
{
$marker = $Line['text'][0];
2018-12-04 19:24:25 +03:00
$openerLength = \strspn($Line['text'], $marker);
2018-12-04 19:24:25 +03:00
if ($openerLength < 3) {
return;
}
2014-02-23 20:55:34 +04:00
2018-12-04 19:24:25 +03:00
$infostring = \trim(\substr($Line['text'], $openerLength), "\t ");
2014-02-23 20:55:34 +04:00
2018-12-04 19:24:25 +03:00
if (\strpos($infostring, '`') !== false) {
return;
}
2014-02-23 20:55:34 +04:00
2018-12-04 19:24:25 +03:00
$Element = [
'name' => 'code',
'text' => '',
2018-12-04 19:24:25 +03:00
];
if ($infostring !== '') {
$Element['attributes'] = ['class' => "language-$infostring"];
}
2014-02-23 20:55:34 +04:00
2018-12-04 19:24:25 +03:00
$Block = [
'char' => $marker,
'openerLength' => $openerLength,
2018-12-04 19:24:25 +03:00
'element' => [
'name' => 'pre',
'element' => $Element,
2018-12-04 19:24:25 +03:00
],
];
return $Block;
2014-04-17 11:59:35 +04:00
}
2014-02-23 20:55:34 +04:00
protected function blockFencedCodeContinue($Line, $Block)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
if (isset($Block['complete'])) {
2014-04-17 11:59:35 +04:00
return;
}
2014-02-23 20:55:34 +04:00
2018-12-04 19:24:25 +03:00
if (isset($Block['interrupted'])) {
$Block['element']['element']['text'] .= \str_repeat("\n", $Block['interrupted']);
2014-02-23 20:55:34 +04:00
2014-04-17 11:59:35 +04:00
unset($Block['interrupted']);
}
2014-02-23 20:55:34 +04:00
2018-12-04 19:24:25 +03:00
if (($len = \strspn($Line['text'], $Block['char'])) >= $Block['openerLength']
and \chop(\substr($Line['text'], $len), ' ') === ''
) {
2018-12-04 19:24:25 +03:00
$Block['element']['element']['text'] = \substr($Block['element']['element']['text'], 1);
2014-02-23 20:55:34 +04:00
2014-04-17 11:59:35 +04:00
$Block['complete'] = true;
2014-02-23 20:55:34 +04:00
2014-04-17 11:59:35 +04:00
return $Block;
}
2014-02-23 20:55:34 +04:00
$Block['element']['element']['text'] .= "\n" . $Line['body'];
2014-02-23 20:55:34 +04:00
2014-04-17 11:59:35 +04:00
return $Block;
}
2014-02-23 20:55:34 +04:00
protected function blockFencedCodeComplete($Block)
{
return $Block;
}
2015-01-05 16:05:18 +03:00
#
# Header
protected function blockHeader($Line)
{
2018-12-04 19:24:25 +03:00
$level = \strspn($Line['text'], '#');
2015-01-05 16:05:18 +03:00
2018-12-04 19:24:25 +03:00
if ($level > 6) {
return;
}
2015-01-10 03:45:51 +03:00
2018-12-04 19:24:25 +03:00
$text = \trim($Line['text'], '#');
2018-12-04 19:24:25 +03:00
if ($this->strictMode and isset($text[0]) and $text[0] !== ' ') {
return;
}
2018-12-04 19:24:25 +03:00
$text = \trim($text, ' ');
2015-01-05 16:05:18 +03:00
2018-12-04 19:24:25 +03:00
$Block = [
'element' => [
'name' => 'h' . $level,
2018-12-04 19:24:25 +03:00
'handler' => [
'function' => 'lineElements',
'argument' => $text,
'destination' => 'elements',
2018-12-04 19:24:25 +03:00
]
],
];
2015-01-05 16:05:18 +03:00
return $Block;
2015-01-05 16:05:18 +03:00
}
2014-04-17 11:59:35 +04:00
#
# List
2014-02-23 20:55:34 +04:00
protected function blockList($Line, array $CurrentBlock = null)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
list($name, $pattern) = $Line['text'][0] <= '-' ? ['ul', '[*+-]'] : ['ol', '[0-9]{1,9}+[.\)]'];
2018-12-04 19:24:25 +03:00
if (\preg_match('/^('.$pattern.'([ ]++|$))(.*+)/', $Line['text'], $matches)) {
$contentIndent = \strlen($matches[2]);
2016-10-13 20:52:38 +03:00
2018-12-04 19:24:25 +03:00
if ($contentIndent >= 5) {
$contentIndent -= 1;
2018-12-04 19:24:25 +03:00
$matches[1] = \substr($matches[1], 0, -$contentIndent);
$matches[3] = \str_repeat(' ', $contentIndent) . $matches[3];
} elseif ($contentIndent === 0) {
$matches[1] .= ' ';
}
2018-12-04 19:24:25 +03:00
$markerWithoutWhitespace = \strstr($matches[1], ' ', true);
2018-04-09 00:32:42 +03:00
2018-12-04 19:24:25 +03:00
$Block = [
2014-04-17 11:59:35 +04:00
'indent' => $Line['indent'],
'pattern' => $pattern,
2018-12-04 19:24:25 +03:00
'data' => [
'type' => $name,
'marker' => $matches[1],
2018-12-04 19:24:25 +03:00
'markerType' => ($name === 'ul' ? $markerWithoutWhitespace : \substr($markerWithoutWhitespace, -1)),
],
'element' => [
2014-04-17 11:59:35 +04:00
'name' => $name,
2018-12-04 19:24:25 +03:00
'elements' => [],
],
];
$Block['data']['markerTypeRegex'] = \preg_quote($Block['data']['markerType'], '/');
2018-12-04 19:24:25 +03:00
if ($name === 'ol') {
$listStart = \ltrim(\strstr($matches[1], $Block['data']['markerType'], true), '0') ?: '0';
2018-03-27 13:23:04 +03:00
2018-12-04 19:24:25 +03:00
if ($listStart !== '1') {
if (
isset($CurrentBlock)
and $CurrentBlock['type'] === 'Paragraph'
and ! isset($CurrentBlock['interrupted'])
) {
return;
}
2018-12-04 19:24:25 +03:00
$Block['element']['attributes'] = ['start' => $listStart];
}
}
2018-12-04 19:24:25 +03:00
$Block['li'] = [
2014-04-17 11:59:35 +04:00
'name' => 'li',
2018-12-04 19:24:25 +03:00
'handler' => [
'function' => 'li',
2018-12-04 19:24:25 +03:00
'argument' => !empty($matches[3]) ? [$matches[3]] : [],
'destination' => 'elements'
2018-12-04 19:24:25 +03:00
]
];
$Block['element']['elements'] []= & $Block['li'];
2014-04-17 11:59:35 +04:00
return $Block;
}
}
2014-02-23 20:55:34 +04:00
2015-01-05 00:34:19 +03:00
protected function blockListContinue($Line, array $Block)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
if (isset($Block['interrupted']) and empty($Block['li']['handler']['argument'])) {
return null;
}
2018-12-04 19:24:25 +03:00
$requiredIndent = ($Block['indent'] + \strlen($Block['data']['marker']));
2018-03-27 14:11:00 +03:00
if ($Line['indent'] < $requiredIndent
and (
(
$Block['data']['type'] === 'ol'
2018-12-04 19:24:25 +03:00
and \preg_match('/^[0-9]++'.$Block['data']['markerTypeRegex'].'(?:[ ]++(.*)|$)/', $Line['text'], $matches)
2018-03-27 14:11:00 +03:00
) or (
$Block['data']['type'] === 'ul'
2018-12-04 19:24:25 +03:00
and \preg_match('/^'.$Block['data']['markerTypeRegex'].'(?:[ ]++(.*)|$)/', $Line['text'], $matches)
)
)
2018-03-27 14:11:00 +03:00
) {
2018-12-04 19:24:25 +03:00
if (isset($Block['interrupted'])) {
$Block['li']['handler']['argument'] []= '';
2014-02-23 20:55:34 +04:00
2017-02-19 19:12:04 +03:00
$Block['loose'] = true;
2014-04-17 11:59:35 +04:00
unset($Block['interrupted']);
}
2014-02-23 20:55:34 +04:00
2014-04-17 11:59:35 +04:00
unset($Block['li']);
2014-02-23 20:55:34 +04:00
2015-01-15 23:31:31 +03:00
$text = isset($matches[1]) ? $matches[1] : '';
$Block['indent'] = $Line['indent'];
2018-12-04 19:24:25 +03:00
$Block['li'] = [
2014-04-17 11:59:35 +04:00
'name' => 'li',
2018-12-04 19:24:25 +03:00
'handler' => [
'function' => 'li',
2018-12-04 19:24:25 +03:00
'argument' => [$text],
'destination' => 'elements'
2018-12-04 19:24:25 +03:00
]
];
2014-02-23 20:55:34 +04:00
$Block['element']['elements'] []= & $Block['li'];
2014-02-23 20:55:34 +04:00
2014-04-17 11:59:35 +04:00
return $Block;
2018-12-04 19:24:25 +03:00
} elseif ($Line['indent'] < $requiredIndent and $this->blockList($Line)) {
return null;
}
2014-02-23 20:55:34 +04:00
2018-12-04 19:24:25 +03:00
if ($Line['text'][0] === '[' and $this->blockReference($Line)) {
2015-01-15 23:04:02 +03:00
return $Block;
}
2018-12-04 19:24:25 +03:00
if ($Line['indent'] >= $requiredIndent) {
if (isset($Block['interrupted'])) {
$Block['li']['handler']['argument'] []= '';
$Block['loose'] = true;
unset($Block['interrupted']);
}
2018-12-04 19:24:25 +03:00
$text = \substr($Line['body'], $requiredIndent);
2014-02-23 20:55:34 +04:00
$Block['li']['handler']['argument'] []= $text;
2014-02-23 20:55:34 +04:00
2014-04-17 11:59:35 +04:00
return $Block;
}
2014-02-23 20:55:34 +04:00
2018-12-04 19:24:25 +03:00
if (! isset($Block['interrupted'])) {
$text = \preg_replace('/^[ ]{0,'.$requiredIndent.'}+/', '', $Line['body']);
$Block['li']['handler']['argument'] []= $text;
2014-04-17 11:59:35 +04:00
return $Block;
}
}
2017-02-19 19:12:04 +03:00
protected function blockListComplete(array $Block)
{
2018-12-04 19:24:25 +03:00
if (isset($Block['loose'])) {
foreach ($Block['element']['elements'] as &$li) {
if (\end($li['handler']['argument']) !== '') {
$li['handler']['argument'] []= '';
2017-02-19 19:12:04 +03:00
}
}
}
return $Block;
}
2014-04-17 11:59:35 +04:00
#
# Quote
2013-11-09 01:40:00 +04:00
2015-01-05 00:34:19 +03:00
protected function blockQuote($Line)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
if (\preg_match('/^>[ ]?+(.*+)/', $Line['text'], $matches)) {
$Block = [
'element' => [
2014-04-17 11:59:35 +04:00
'name' => 'blockquote',
2018-12-04 19:24:25 +03:00
'handler' => [
'function' => 'linesElements',
'argument' => (array) $matches[1],
'destination' => 'elements',
2018-12-04 19:24:25 +03:00
]
],
];
2014-04-17 11:59:35 +04:00
return $Block;
}
}
2015-01-05 00:34:19 +03:00
protected function blockQuoteContinue($Line, array $Block)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
if (isset($Block['interrupted'])) {
2018-03-28 05:27:09 +03:00
return;
}
2018-12-04 19:24:25 +03:00
if ($Line['text'][0] === '>' and \preg_match('/^>[ ]?+(.*+)/', $Line['text'], $matches)) {
$Block['element']['handler']['argument'] []= $matches[1];
2013-11-09 01:40:00 +04:00
2014-04-17 11:59:35 +04:00
return $Block;
}
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
if (! isset($Block['interrupted'])) {
$Block['element']['handler']['argument'] []= $Line['text'];
2013-11-09 01:40:00 +04:00
2014-04-17 11:59:35 +04:00
return $Block;
}
}
2014-05-05 15:39:40 +04:00
#
# Rule
2015-01-05 00:34:19 +03:00
protected function blockRule($Line)
2014-05-05 15:39:40 +04:00
{
2018-04-09 04:31:36 +03:00
$marker = $Line['text'][0];
2018-12-04 19:24:25 +03:00
if (\substr_count($Line['text'], $marker) >= 3 and \chop($Line['text'], " $marker") === '') {
$Block = [
'element' => [
'name' => 'hr',
2018-12-04 19:24:25 +03:00
],
];
2014-05-05 15:39:40 +04:00
return $Block;
}
}
#
# Setext
2015-01-10 14:54:55 +03:00
protected function blockSetextHeader($Line, array $Block = null)
2014-05-05 15:39:40 +04:00
{
2018-12-04 19:24:25 +03:00
if (! isset($Block) or $Block['type'] !== 'Paragraph' or isset($Block['interrupted'])) {
2014-05-05 15:39:40 +04:00
return;
}
2018-12-04 19:24:25 +03:00
if ($Line['indent'] < 4 and \chop(\chop($Line['text'], ' '), $Line['text'][0]) === '') {
2014-05-05 15:39:40 +04:00
$Block['element']['name'] = $Line['text'][0] === '=' ? 'h1' : 'h2';
return $Block;
}
}
#
# Markup
2015-01-05 00:34:19 +03:00
protected function blockMarkup($Line)
2014-05-05 15:39:40 +04:00
{
2018-12-04 19:24:25 +03:00
if ($this->markupEscaped or $this->safeMode) {
2014-09-22 03:36:42 +04:00
return;
}
2018-12-04 19:24:25 +03:00
if (\preg_match('/^<[\/]?+(\w*)(?:[ ]*+'.$this->regexHtmlAttribute.')*+[ ]*+(\/)?>/', $Line['text'], $matches)) {
$element = \strtolower($matches[1]);
2015-07-31 01:33:21 +03:00
2018-12-04 19:24:25 +03:00
if (\in_array($element, $this->textLevelElements, true)) {
2014-05-05 15:39:40 +04:00
return;
}
2018-12-04 19:24:25 +03:00
$Block = [
'name' => $matches[1],
2018-12-04 19:24:25 +03:00
'element' => [
2018-03-21 05:18:34 +03:00
'rawHtml' => $Line['text'],
'autobreak' => true,
2018-12-04 19:24:25 +03:00
],
];
2014-05-05 15:39:40 +04:00
return $Block;
}
2014-05-05 15:39:40 +04:00
}
2015-01-05 00:34:19 +03:00
protected function blockMarkupContinue($Line, array $Block)
2014-05-05 15:39:40 +04:00
{
2018-12-04 19:24:25 +03:00
if (isset($Block['closed']) or isset($Block['interrupted'])) {
2014-05-05 15:39:40 +04:00
return;
}
$Block['element']['rawHtml'] .= "\n" . $Line['body'];
2014-05-05 15:39:40 +04:00
return $Block;
}
#
# Reference
protected function blockReference($Line)
{
2018-12-04 19:24:25 +03:00
if (\strpos($Line['text'], ']') !== false
and \preg_match('/^\[(.+?)\]:[ ]*+<?(\S+?)>?(?:[ ]+["\'(](.+)["\')])?[ ]*+$/', $Line['text'], $matches)
) {
2018-12-04 19:24:25 +03:00
$id = \strtolower($matches[1]);
2018-12-04 19:24:25 +03:00
$Data = [
'url' => $matches[2],
'title' => isset($matches[3]) ? $matches[3] : null,
2018-12-04 19:24:25 +03:00
];
$this->DefinitionData['Reference'][$id] = $Data;
2018-12-04 19:24:25 +03:00
$Block = [
'element' => [],
];
return $Block;
}
}
2014-04-17 11:59:35 +04:00
#
# Table
2015-01-05 00:34:19 +03:00
protected function blockTable($Line, array $Block = null)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
if (! isset($Block) or $Block['type'] !== 'Paragraph' or isset($Block['interrupted'])) {
2014-04-17 11:59:35 +04:00
return;
}
if (
2018-12-04 19:24:25 +03:00
\strpos($Block['element']['handler']['argument'], '|') === false
and \strpos($Line['text'], '|') === false
and \strpos($Line['text'], ':') === false
or \strpos($Block['element']['handler']['argument'], "\n") !== false
) {
return;
}
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
if (\chop($Line['text'], ' -:|') !== '') {
return;
}
2018-12-04 19:24:25 +03:00
$alignments = [];
2013-11-10 00:23:56 +04:00
$divider = $Line['text'];
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
$divider = \trim($divider);
$divider = \trim($divider, '|');
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
$dividerCells = \explode('|', $divider);
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
foreach ($dividerCells as $dividerCell) {
$dividerCell = \trim($dividerCell);
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
if ($dividerCell === '') {
return;
}
2013-11-09 01:40:00 +04:00
$alignment = null;
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
if ($dividerCell[0] === ':') {
$alignment = 'left';
2014-04-17 11:59:35 +04:00
}
2018-12-04 19:24:25 +03:00
if (\substr($dividerCell, - 1) === ':') {
$alignment = $alignment === 'left' ? 'center' : 'right';
}
$alignments []= $alignment;
}
# ~
2018-12-04 19:24:25 +03:00
$HeaderElements = [];
2013-11-09 01:40:00 +04:00
$header = $Block['element']['handler']['argument'];
2014-02-05 16:03:23 +04:00
2018-12-04 19:24:25 +03:00
$header = \trim($header);
$header = \trim($header, '|');
2013-11-02 23:42:55 +04:00
2018-12-04 19:24:25 +03:00
$headerCells = \explode('|', $header);
2014-02-05 16:03:23 +04:00
2018-12-04 19:24:25 +03:00
if (\count($headerCells) !== \count($alignments)) {
return;
}
2014-02-05 16:03:23 +04:00
2018-12-04 19:24:25 +03:00
foreach ($headerCells as $index => $headerCell) {
$headerCell = \trim($headerCell);
2014-02-05 16:03:23 +04:00
2018-12-04 19:24:25 +03:00
$HeaderElement = [
'name' => 'th',
2018-12-04 19:24:25 +03:00
'handler' => [
'function' => 'lineElements',
'argument' => $headerCell,
'destination' => 'elements',
2018-12-04 19:24:25 +03:00
]
];
2014-02-05 16:03:23 +04:00
2018-12-04 19:24:25 +03:00
if (isset($alignments[$index])) {
$alignment = $alignments[$index];
2013-12-26 23:53:48 +04:00
2018-12-04 19:24:25 +03:00
$HeaderElement['attributes'] = [
'style' => "text-align: $alignment;",
2018-12-04 19:24:25 +03:00
];
}
2014-04-17 11:59:35 +04:00
$HeaderElements []= $HeaderElement;
}
2014-04-17 11:59:35 +04:00
# ~
2014-04-17 11:59:35 +04:00
2018-12-04 19:24:25 +03:00
$Block = [
'alignments' => $alignments,
'identified' => true,
2018-12-04 19:24:25 +03:00
'element' => [
'name' => 'table',
2018-12-04 19:24:25 +03:00
'elements' => [],
],
];
2018-12-04 19:24:25 +03:00
$Block['element']['elements'] []= [
'name' => 'thead',
2018-12-04 19:24:25 +03:00
];
2018-12-04 19:24:25 +03:00
$Block['element']['elements'] []= [
'name' => 'tbody',
2018-12-04 19:24:25 +03:00
'elements' => [],
];
2018-12-04 19:24:25 +03:00
$Block['element']['elements'][0]['elements'] []= [
'name' => 'tr',
'elements' => $HeaderElements,
2018-12-04 19:24:25 +03:00
];
2014-04-17 11:59:35 +04:00
return $Block;
2014-04-17 11:59:35 +04:00
}
2014-02-05 16:03:23 +04:00
2015-01-05 00:34:19 +03:00
protected function blockTableContinue($Line, array $Block)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
if (isset($Block['interrupted'])) {
2015-01-15 03:45:45 +03:00
return;
}
2018-12-04 19:24:25 +03:00
if (\count($Block['alignments']) === 1 or $Line['text'][0] === '|' or \strpos($Line['text'], '|')) {
$Elements = [];
2014-02-05 16:03:23 +04:00
2014-04-17 11:59:35 +04:00
$row = $Line['text'];
2014-02-05 16:03:23 +04:00
2018-12-04 19:24:25 +03:00
$row = \trim($row);
$row = \trim($row, '|');
2014-02-05 16:03:23 +04:00
2018-12-04 19:24:25 +03:00
\preg_match_all('/(?:(\\\\[|])|[^|`]|`[^`]++`|`)++/', $row, $matches);
2014-02-06 04:36:22 +04:00
2018-12-04 19:24:25 +03:00
$cells = \array_slice($matches[0], 0, \count($Block['alignments']));
2018-12-04 19:24:25 +03:00
foreach ($cells as $index => $cell) {
$cell = \trim($cell);
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
$Element = [
2014-04-17 11:59:35 +04:00
'name' => 'td',
2018-12-04 19:24:25 +03:00
'handler' => [
'function' => 'lineElements',
'argument' => $cell,
'destination' => 'elements',
2018-12-04 19:24:25 +03:00
]
];
2014-02-05 16:03:23 +04:00
2018-12-04 19:24:25 +03:00
if (isset($Block['alignments'][$index])) {
$Element['attributes'] = [
'style' => 'text-align: ' . $Block['alignments'][$index] . ';',
2018-12-04 19:24:25 +03:00
];
2014-04-17 11:59:35 +04:00
}
2014-04-17 11:59:35 +04:00
$Elements []= $Element;
}
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
$Element = [
2014-04-17 11:59:35 +04:00
'name' => 'tr',
'elements' => $Elements,
2018-12-04 19:24:25 +03:00
];
$Block['element']['elements'][1]['elements'] []= $Element;
2014-04-17 11:59:35 +04:00
return $Block;
}
}
2014-04-17 11:59:35 +04:00
#
# ~
#
2013-11-09 01:40:00 +04:00
2015-01-05 00:34:19 +03:00
protected function paragraph($Line)
2014-05-11 23:31:02 +04:00
{
2018-12-04 19:24:25 +03:00
return [
'type' => 'Paragraph',
2018-12-04 19:24:25 +03:00
'element' => [
2014-05-11 23:31:02 +04:00
'name' => 'p',
2018-12-04 19:24:25 +03:00
'handler' => [
'function' => 'lineElements',
'argument' => $Line['text'],
'destination' => 'elements',
2018-12-04 19:24:25 +03:00
],
],
];
2014-05-11 23:31:02 +04:00
}
protected function paragraphContinue($Line, array $Block)
{
2018-12-04 19:24:25 +03:00
if (isset($Block['interrupted'])) {
return;
}
$Block['element']['handler']['argument'] .= "\n".$Line['text'];
return $Block;
}
2014-04-17 11:59:35 +04:00
#
# Inline Elements
2014-04-17 11:59:35 +04:00
#
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
protected $InlineTypes = [
'!' => ['Image'],
'&' => ['SpecialCharacter'],
'*' => ['Emphasis'],
':' => ['Url'],
'<' => ['UrlTag', 'EmailTag', 'Markup'],
'[' => ['Link'],
'_' => ['Emphasis'],
'`' => ['Code'],
'~' => ['Strikethrough'],
'\\' => ['EscapeSequence'],
];
2014-05-05 15:39:40 +04:00
# ~
protected $inlineMarkerList = '!*_&[:<`~\\';
2014-05-05 15:39:40 +04:00
#
# ~
#
2018-12-04 19:24:25 +03:00
public function line($text, $nonNestables = [])
2014-04-17 11:59:35 +04:00
{
2018-03-21 05:18:34 +03:00
return $this->elements($this->lineElements($text, $nonNestables));
}
2018-12-04 19:24:25 +03:00
protected function lineElements($text, $nonNestables = [])
2018-03-21 05:18:34 +03:00
{
# standardize line breaks
2018-12-04 19:24:25 +03:00
$text = \str_replace(["\r\n", "\r"], "\n", $text);
2018-12-04 19:24:25 +03:00
$Elements = [];
2018-12-04 19:24:25 +03:00
$nonNestables = (
empty($nonNestables)
? []
: \array_combine($nonNestables, $nonNestables)
2018-04-13 00:22:53 +03:00
);
2015-06-25 01:05:05 +03:00
# $excerpt is based on the first occurrence of a marker
2018-12-04 19:24:25 +03:00
while ($excerpt = \strpbrk($text, $this->inlineMarkerList)) {
$marker = $excerpt[0];
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
$markerPosition = \strlen($text) - \strlen($excerpt);
2018-12-04 19:24:25 +03:00
$Excerpt = ['text' => $excerpt, 'context' => $text];
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
foreach ($this->InlineTypes[$marker] as $inlineType) {
# check to see if the current inline type is nestable in the current context
2018-12-04 19:24:25 +03:00
if (isset($nonNestables[$inlineType])) {
continue;
}
$Inline = $this->{"inline$inlineType"}($Excerpt);
2014-01-20 11:26:25 +04:00
2018-12-04 19:24:25 +03:00
if (! isset($Inline)) {
2014-04-28 03:10:18 +04:00
continue;
}
2014-01-20 11:26:25 +04:00
2015-06-25 01:05:05 +03:00
# makes sure that the inline belongs to "our" marker
2018-12-04 19:24:25 +03:00
if (isset($Inline['position']) and $Inline['position'] > $markerPosition) {
continue;
}
2015-06-25 01:05:05 +03:00
# sets a default inline position
2018-12-04 19:24:25 +03:00
if (! isset($Inline['position'])) {
$Inline['position'] = $markerPosition;
}
# cause the new element to 'inherit' our non nestables
$Inline['element']['nonNestables'] = isset($Inline['element']['nonNestables'])
2018-12-04 19:24:25 +03:00
? \array_merge($Inline['element']['nonNestables'], $nonNestables)
: $nonNestables
;
2015-06-25 01:05:05 +03:00
# the text that comes before the inline
2018-12-04 19:24:25 +03:00
$unmarkedText = \substr($text, 0, $Inline['position']);
2015-06-25 01:05:05 +03:00
# compile the unmarked text
2018-03-21 05:18:34 +03:00
$InlineText = $this->inlineText($unmarkedText);
$Elements[] = $InlineText['element'];
2014-01-21 00:19:23 +04:00
2015-06-25 01:05:05 +03:00
# compile the inline
$Elements[] = $this->extractElement($Inline);
2014-01-21 00:19:23 +04:00
2015-06-25 01:05:05 +03:00
# remove the examined text
2018-12-04 19:24:25 +03:00
$text = \substr($text, $Inline['position'] + $Inline['extent']);
2014-04-28 03:10:18 +04:00
continue 2;
2014-04-17 11:59:35 +04:00
}
2015-06-25 01:05:05 +03:00
# the marker does not belong to an inline
2018-12-04 19:24:25 +03:00
$unmarkedText = \substr($text, 0, $markerPosition + 1);
2015-06-25 01:05:05 +03:00
2018-03-21 05:18:34 +03:00
$InlineText = $this->inlineText($unmarkedText);
$Elements[] = $InlineText['element'];
2013-07-11 00:22:16 +04:00
2018-12-04 19:24:25 +03:00
$text = \substr($text, $markerPosition + 1);
2014-04-17 11:59:35 +04:00
}
2018-03-21 05:18:34 +03:00
$InlineText = $this->inlineText($text);
$Elements[] = $InlineText['element'];
2018-12-04 19:24:25 +03:00
foreach ($Elements as &$Element) {
if (! isset($Element['autobreak'])) {
2018-04-08 22:37:36 +03:00
$Element['autobreak'] = false;
}
2018-04-08 19:33:01 +03:00
}
2018-03-21 05:18:34 +03:00
return $Elements;
2014-04-17 11:59:35 +04:00
}
2014-04-17 11:59:35 +04:00
#
# ~
#
2018-03-19 01:37:40 +03:00
protected function inlineText($text)
{
2018-12-04 19:24:25 +03:00
$Inline = [
'extent' => \strlen($text),
'element' => [],
];
2018-03-19 01:37:40 +03:00
$Inline['element']['elements'] = self::pregReplaceElements(
2018-04-12 21:33:01 +03:00
$this->breaksEnabled ? '/[ ]*+\n/' : '/(?:[ ]*+\\\\|[ ]{2,}+)\n/',
2018-12-04 19:24:25 +03:00
[
['name' => 'br'],
['text' => "\n"],
],
$text
2018-04-12 21:33:01 +03:00
);
2018-03-19 01:37:40 +03:00
return $Inline;
}
protected function inlineCode($Excerpt)
2014-12-15 01:52:03 +03:00
{
$marker = $Excerpt['text'][0];
2014-12-15 01:52:03 +03:00
2018-12-04 19:24:25 +03:00
if (\preg_match('/^(['.$marker.']++)[ ]*+(.+?)[ ]*+(?<!['.$marker.'])\1(?!'.$marker.')/s', $Excerpt['text'], $matches)) {
2015-01-16 04:18:07 +03:00
$text = $matches[2];
2018-12-04 19:24:25 +03:00
$text = \preg_replace('/[ ]*+\n/', ' ', $text);
2014-04-17 11:59:35 +04:00
2018-12-04 19:24:25 +03:00
return [
'extent' => \strlen($matches[0]),
'element' => [
2015-01-16 04:18:07 +03:00
'name' => 'code',
'text' => $text,
2018-12-04 19:24:25 +03:00
],
];
2014-04-17 11:59:35 +04:00
}
}
protected function inlineEmailTag($Excerpt)
2014-04-17 11:59:35 +04:00
{
$hostnameLabel = '[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?';
$commonMarkEmail = '[a-zA-Z0-9.!#$%&\'*+\/=?^_`{|}~-]++@'
. $hostnameLabel . '(?:\.' . $hostnameLabel . ')*';
2018-12-04 19:24:25 +03:00
if (\strpos($Excerpt['text'], '>') !== false
and \preg_match("/^<((mailto:)?$commonMarkEmail)>/i", $Excerpt['text'], $matches)
) {
2014-12-15 01:52:03 +03:00
$url = $matches[1];
2018-12-04 19:24:25 +03:00
if (! isset($matches[2])) {
$url = "mailto:$url";
2014-12-15 01:52:03 +03:00
}
2018-12-04 19:24:25 +03:00
return [
'extent' => \strlen($matches[0]),
'element' => [
2014-04-17 11:59:35 +04:00
'name' => 'a',
'text' => $matches[1],
2018-12-04 19:24:25 +03:00
'attributes' => [
2014-12-15 01:52:03 +03:00
'href' => $url,
2018-12-04 19:24:25 +03:00
],
],
];
2014-04-17 11:59:35 +04:00
}
}
protected function inlineEmphasis($Excerpt)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
if (! isset($Excerpt['text'][1])) {
2014-09-22 03:36:42 +04:00
return;
}
$marker = $Excerpt['text'][0];
2015-01-16 04:18:07 +03:00
2018-12-04 19:24:25 +03:00
if ($Excerpt['text'][1] === $marker and \preg_match($this->StrongRegex[$marker], $Excerpt['text'], $matches)) {
2015-01-16 04:18:07 +03:00
$emphasis = 'strong';
2018-12-04 19:24:25 +03:00
} elseif (\preg_match($this->EmRegex[$marker], $Excerpt['text'], $matches)) {
2015-01-16 04:18:07 +03:00
$emphasis = 'em';
2018-12-04 19:24:25 +03:00
} else {
2015-01-16 04:18:07 +03:00
return;
2014-04-17 11:59:35 +04:00
}
2015-01-16 04:18:07 +03:00
2018-12-04 19:24:25 +03:00
return [
'extent' => \strlen($matches[0]),
'element' => [
2015-01-16 04:18:07 +03:00
'name' => $emphasis,
2018-12-04 19:24:25 +03:00
'handler' => [
'function' => 'lineElements',
'argument' => $matches[1],
'destination' => 'elements',
2018-12-04 19:24:25 +03:00
]
],
];
2014-04-17 11:59:35 +04:00
}
protected function inlineEscapeSequence($Excerpt)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
if (isset($Excerpt['text'][1]) and \in_array($Excerpt['text'][1], $this->specialCharacters, true)) {
return [
'element' => ['rawHtml' => $Excerpt['text'][1]],
2015-01-16 04:18:07 +03:00
'extent' => 2,
2018-12-04 19:24:25 +03:00
];
2014-04-17 11:59:35 +04:00
}
}
protected function inlineImage($Excerpt)
2014-12-15 02:07:29 +03:00
{
2018-12-04 19:24:25 +03:00
if (! isset($Excerpt['text'][1]) or $Excerpt['text'][1] !== '[') {
2014-12-15 02:07:29 +03:00
return;
}
2018-12-04 19:24:25 +03:00
$Excerpt['text']= \substr($Excerpt['text'], 1);
2014-12-15 02:07:29 +03:00
$Link = $this->inlineLink($Excerpt);
2014-12-15 02:07:29 +03:00
2018-12-04 19:24:25 +03:00
if ($Link === null) {
2014-12-16 14:58:33 +03:00
return;
}
2018-12-04 19:24:25 +03:00
$Inline = [
'extent' => $Link['extent'] + 1,
2018-12-04 19:24:25 +03:00
'element' => [
'name' => 'img',
2018-12-04 19:24:25 +03:00
'attributes' => [
'src' => $Link['element']['attributes']['href'],
'alt' => $Link['element']['handler']['argument'],
2018-12-04 19:24:25 +03:00
],
'autobreak' => true,
2018-12-04 19:24:25 +03:00
],
];
2014-12-15 02:07:29 +03:00
$Inline['element']['attributes'] += $Link['element']['attributes'];
unset($Inline['element']['attributes']['href']);
2014-12-15 02:07:29 +03:00
return $Inline;
2014-12-15 02:07:29 +03:00
}
protected function inlineLink($Excerpt)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
$Element = [
2014-12-15 02:07:29 +03:00
'name' => 'a',
2018-12-04 19:24:25 +03:00
'handler' => [
'function' => 'lineElements',
'argument' => null,
'destination' => 'elements',
2018-12-04 19:24:25 +03:00
],
'nonNestables' => ['Url', 'Link'],
'attributes' => [
2014-12-15 02:07:29 +03:00
'href' => null,
'title' => null,
2018-12-04 19:24:25 +03:00
],
];
2014-12-15 02:07:29 +03:00
$extent = 0;
$remainder = $Excerpt['text'];
2014-12-15 02:07:29 +03:00
2018-12-04 19:24:25 +03:00
if (\preg_match('/\[((?:[^][]++|(?R))*+)\]/', $remainder, $matches)) {
$Element['handler']['argument'] = $matches[1];
2018-12-04 19:24:25 +03:00
$extent += \strlen($matches[0]);
2014-01-20 00:49:43 +04:00
2018-12-04 19:24:25 +03:00
$remainder = \substr($remainder, $extent);
} else {
2014-12-15 02:07:29 +03:00
return;
}
2014-01-20 00:49:43 +04:00
2018-12-04 19:24:25 +03:00
if (\preg_match('/^[(]\s*+((?:[^ ()]++|[(][^ )]+[)])++)(?:[ ]+("[^"]*+"|\'[^\']*+\'))?\s*+[)]/', $remainder, $matches)) {
2014-12-15 02:07:29 +03:00
$Element['attributes']['href'] = $matches[1];
2014-01-20 00:49:43 +04:00
2018-12-04 19:24:25 +03:00
if (isset($matches[2])) {
$Element['attributes']['title'] = \substr($matches[2], 1, - 1);
2014-04-17 11:59:35 +04:00
}
2018-12-04 19:24:25 +03:00
$extent += \strlen($matches[0]);
} else {
if (\preg_match('/^\s*\[(.*?)\]/', $remainder, $matches)) {
$definition = \strlen($matches[1]) ? $matches[1] : $Element['handler']['argument'];
$definition = \strtolower($definition);
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
$extent += \strlen($matches[0]);
} else {
$definition = \strtolower($Element['handler']['argument']);
2014-12-15 02:07:29 +03:00
}
2018-12-04 19:24:25 +03:00
if (! isset($this->DefinitionData['Reference'][$definition])) {
2014-04-17 11:59:35 +04:00
return;
}
$Definition = $this->DefinitionData['Reference'][$definition];
2013-11-09 01:40:00 +04:00
2014-12-15 02:07:29 +03:00
$Element['attributes']['href'] = $Definition['url'];
$Element['attributes']['title'] = $Definition['title'];
2014-04-17 11:59:35 +04:00
}
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
return [
2014-04-17 11:59:35 +04:00
'extent' => $extent,
'element' => $Element,
2018-12-04 19:24:25 +03:00
];
2014-04-17 11:59:35 +04:00
}
2013-11-09 01:40:00 +04:00
protected function inlineMarkup($Excerpt)
2014-04-17 11:59:35 +04:00
{
2018-12-04 19:24:25 +03:00
if ($this->markupEscaped or $this->safeMode or \strpos($Excerpt['text'], '>') === false) {
2014-04-17 11:59:35 +04:00
return;
}
2013-11-09 01:40:00 +04:00
2018-12-04 19:24:25 +03:00
if ($Excerpt['text'][1] === '/' and \preg_match('/^<\/\w[\w-]*+[ ]*+>/s', $Excerpt['text'], $matches)) {
return [
'element' => ['rawHtml' => $matches[0]],
'extent' => \strlen($matches[0]),
];
2014-04-17 11:59:35 +04:00
}
2015-01-16 04:18:07 +03:00
2018-12-04 19:24:25 +03:00
if ($Excerpt['text'][1] === '!' and \preg_match('/^<!---?[^>-](?:-?+[^-])*-->/s', $Excerpt['text'], $matches)) {
return [
'element' => ['rawHtml' => $matches[0]],
'extent' => \strlen($matches[0]),
];
2014-04-17 11:59:35 +04:00
}
2015-01-16 04:18:07 +03:00
2018-12-04 19:24:25 +03:00
if ($Excerpt['text'][1] !== ' ' and \preg_match('/^<\w[\w-]*+(?:[ ]*+'.$this->regexHtmlAttribute.')*+[ ]*+\/?>/s', $Excerpt['text'], $matches)) {
return [
'element' => ['rawHtml' => $matches[0]],
'extent' => \strlen($matches[0]),
];
2014-04-17 11:59:35 +04:00
}
2015-01-16 04:18:07 +03:00
}
2013-11-22 02:20:45 +04:00
protected function inlineSpecialCharacter($Excerpt)
2015-01-16 04:18:07 +03:00
{
2018-12-04 19:24:25 +03:00
if (\substr($Excerpt['text'], 1, 1) !== ' ' and \strpos($Excerpt['text'], ';') !== false
and \preg_match('/^&(#?+[0-9a-zA-Z]++);/', $Excerpt['text'], $matches)
) {
2018-12-04 19:24:25 +03:00
return [
'element' => ['rawHtml' => '&' . $matches[1] . ';'],
'extent' => \strlen($matches[0]),
];
}
return;
2014-04-17 11:59:35 +04:00
}
2013-11-22 02:20:45 +04:00
protected function inlineStrikethrough($Excerpt)
2015-01-16 04:18:07 +03:00
{
2018-12-04 19:24:25 +03:00
if (! isset($Excerpt['text'][1])) {
2015-01-16 04:18:07 +03:00
return;
}
2018-12-04 19:24:25 +03:00
if ($Excerpt['text'][1] === '~' and \preg_match('/^~~(?=\S)(.+?)(?<=\S)~~/', $Excerpt['text'], $matches)) {
return [
'extent' => \strlen($matches[0]),
'element' => [
2015-01-16 04:18:07 +03:00
'name' => 'del',
2018-12-04 19:24:25 +03:00
'handler' => [
'function' => 'lineElements',
'argument' => $matches[1],
'destination' => 'elements',
2018-12-04 19:24:25 +03:00
]
],
];
2015-01-16 04:18:07 +03:00
}
}
protected function inlineUrl($Excerpt)
2015-01-16 04:18:07 +03:00
{
2018-12-04 19:24:25 +03:00
if ($this->urlsLinked !== true or ! isset($Excerpt['text'][2]) or $Excerpt['text'][2] !== '/') {
return;
}
2018-12-04 19:24:25 +03:00
if (\strpos($Excerpt['context'], 'http') !== false
and \preg_match('/\bhttps?+:[\/]{2}[^\s<]+\b\/*+/ui', $Excerpt['context'], $matches, \PREG_OFFSET_CAPTURE)
) {
$url = $matches[0][0];
2018-12-04 19:24:25 +03:00
$Inline = [
'extent' => \strlen($matches[0][0]),
'position' => $matches[0][1],
2018-12-04 19:24:25 +03:00
'element' => [
'name' => 'a',
'text' => $url,
2018-12-04 19:24:25 +03:00
'attributes' => [
'href' => $url,
2018-12-04 19:24:25 +03:00
],
],
];
return $Inline;
}
}
protected function inlineUrlTag($Excerpt)
{
2018-12-04 19:24:25 +03:00
if (\strpos($Excerpt['text'], '>') !== false and \preg_match('/^<(\w++:\/{2}[^ >]++)>/i', $Excerpt['text'], $matches)) {
$url = $matches[1];
2015-01-16 04:18:07 +03:00
2018-12-04 19:24:25 +03:00
return [
'extent' => \strlen($matches[0]),
'element' => [
2015-01-16 04:18:07 +03:00
'name' => 'a',
'text' => $url,
2018-12-04 19:24:25 +03:00
'attributes' => [
2015-01-16 04:18:07 +03:00
'href' => $url,
2018-12-04 19:24:25 +03:00
],
],
];
2015-01-16 04:18:07 +03:00
}
}
# ~
protected function unmarkedText($text)
{
2018-03-19 02:06:26 +03:00
$Inline = $this->inlineText($text);
return $this->element($Inline['element']);
2014-04-17 11:59:35 +04:00
}
2013-11-09 01:40:00 +04:00
2014-04-17 11:59:35 +04:00
#
2015-01-16 04:18:07 +03:00
# Handlers
2014-04-17 11:59:35 +04:00
#
2013-11-21 15:39:00 +04:00
protected function handle(array $Element)
{
2018-12-04 19:24:25 +03:00
if (isset($Element['handler'])) {
if (!isset($Element['nonNestables'])) {
$Element['nonNestables'] = [];
}
2018-12-04 19:24:25 +03:00
if (\is_string($Element['handler'])) {
2018-03-21 20:31:40 +03:00
$function = $Element['handler'];
$argument = $Element['text'];
unset($Element['text']);
2018-03-21 20:31:40 +03:00
$destination = 'rawHtml';
2018-12-04 19:24:25 +03:00
} else {
2018-03-21 20:31:40 +03:00
$function = $Element['handler']['function'];
$argument = $Element['handler']['argument'];
$destination = $Element['handler']['destination'];
}
$Element[$destination] = $this->{$function}($argument, $Element['nonNestables']);
2018-03-31 14:07:53 +03:00
2018-12-04 19:24:25 +03:00
if ($destination === 'handler') {
2018-03-31 14:07:53 +03:00
$Element = $this->handle($Element);
}
2018-04-08 19:38:09 +03:00
unset($Element['handler']);
}
return $Element;
}
protected function handleElementRecursive(array $Element)
{
2018-12-04 19:24:25 +03:00
return $this->elementApplyRecursive([$this, 'handle'], $Element);
}
protected function handleElementsRecursive(array $Elements)
{
2018-12-04 19:24:25 +03:00
return $this->elementsApplyRecursive([$this, 'handle'], $Elements);
}
protected function elementApplyRecursive($closure, array $Element)
{
2018-12-04 19:24:25 +03:00
$Element = \call_user_func($closure, $Element);
2018-12-04 19:24:25 +03:00
if (isset($Element['elements'])) {
$Element['elements'] = $this->elementsApplyRecursive($closure, $Element['elements']);
2018-12-04 19:24:25 +03:00
} elseif (isset($Element['element'])) {
$Element['element'] = $this->elementApplyRecursive($closure, $Element['element']);
}
return $Element;
}
protected function elementApplyRecursiveDepthFirst($closure, array $Element)
{
2018-12-04 19:24:25 +03:00
if (isset($Element['elements'])) {
2018-04-08 20:40:50 +03:00
$Element['elements'] = $this->elementsApplyRecursiveDepthFirst($closure, $Element['elements']);
2018-12-04 19:24:25 +03:00
} elseif (isset($Element['element'])) {
2018-04-08 20:40:50 +03:00
$Element['element'] = $this->elementsApplyRecursiveDepthFirst($closure, $Element['element']);
}
2018-12-04 19:24:25 +03:00
$Element = \call_user_func($closure, $Element);
return $Element;
}
protected function elementsApplyRecursive($closure, array $Elements)
{
2018-12-04 19:24:25 +03:00
foreach ($Elements as &$Element) {
$Element = $this->elementApplyRecursive($closure, $Element);
}
return $Elements;
}
protected function elementsApplyRecursiveDepthFirst($closure, array $Elements)
{
2018-12-04 19:24:25 +03:00
foreach ($Elements as &$Element) {
$Element = $this->elementApplyRecursiveDepthFirst($closure, $Element);
}
return $Elements;
}
2015-01-16 04:18:07 +03:00
protected function element(array $Element)
{
2018-12-04 19:24:25 +03:00
if ($this->safeMode) {
$Element = $this->sanitiseElement($Element);
}
# identity map if element has no handler
$Element = $this->handle($Element);
2017-06-13 22:28:32 +03:00
$hasName = isset($Element['name']);
2015-01-16 04:18:07 +03:00
2017-06-13 22:28:32 +03:00
$markup = '';
2018-12-04 19:24:25 +03:00
if ($hasName) {
$markup .= '<' . $Element['name'];
2017-06-13 22:28:32 +03:00
2018-12-04 19:24:25 +03:00
if (isset($Element['attributes'])) {
foreach ($Element['attributes'] as $name => $value) {
if ($value === null) {
2017-06-13 22:28:32 +03:00
continue;
}
2015-01-16 04:18:07 +03:00
$markup .= " $name=\"".self::escape($value).'"';
2017-06-13 22:28:32 +03:00
}
2015-01-16 04:18:07 +03:00
}
}
$permitRawHtml = false;
2018-12-04 19:24:25 +03:00
if (isset($Element['text'])) {
$text = $Element['text'];
}
// very strongly consider an alternative if you're writing an
// extension
2018-12-04 19:24:25 +03:00
elseif (isset($Element['rawHtml'])) {
$text = $Element['rawHtml'];
$allowRawHtmlInSafeMode = isset($Element['allowRawHtmlInSafeMode']) && $Element['allowRawHtmlInSafeMode'];
$permitRawHtml = !$this->safeMode || $allowRawHtmlInSafeMode;
}
$hasContent = isset($text) || isset($Element['element']) || isset($Element['elements']);
2018-12-04 19:24:25 +03:00
if ($hasContent) {
2017-06-13 22:28:32 +03:00
$markup .= $hasName ? '>' : '';
2015-01-16 04:18:07 +03:00
2018-12-04 19:24:25 +03:00
if (isset($Element['elements'])) {
$markup .= $this->elements($Element['elements']);
2018-12-04 19:24:25 +03:00
} elseif (isset($Element['element'])) {
$markup .= $this->element($Element['element']);
2018-12-04 19:24:25 +03:00
} else {
if (!$permitRawHtml) {
$markup .= self::escape($text, true);
2018-12-04 19:24:25 +03:00
} else {
$markup .= $text;
}
2015-01-16 04:18:07 +03:00
}
$markup .= $hasName ? '</' . $Element['name'] . '>' : '';
2018-12-04 19:24:25 +03:00
} elseif ($hasName) {
2015-01-16 04:18:07 +03:00
$markup .= ' />';
}
return $markup;
}
protected function elements(array $Elements)
{
$markup = '';
$autoBreak = true;
2018-12-04 19:24:25 +03:00
foreach ($Elements as $Element) {
if (empty($Element)) {
continue;
}
2018-12-04 19:24:25 +03:00
$autoBreakNext = (
isset($Element['autobreak'])
2018-04-08 22:37:36 +03:00
? $Element['autobreak'] : isset($Element['name'])
2018-03-21 05:18:34 +03:00
);
// (autobreak === false) covers both sides of an element
2018-03-21 05:18:34 +03:00
$autoBreak = !$autoBreak ? $autoBreak : $autoBreakNext;
$markup .= ($autoBreak ? "\n" : '') . $this->element($Element);
2018-03-21 05:18:34 +03:00
$autoBreak = $autoBreakNext;
2015-01-16 04:18:07 +03:00
}
$markup .= $autoBreak ? "\n" : '';
2015-01-16 04:18:07 +03:00
return $markup;
}
# ~
2014-04-17 11:59:35 +04:00
protected function li($lines)
{
$Elements = $this->linesElements($lines);
2018-12-04 19:24:25 +03:00
if (! \in_array('', $lines, true)
and isset($Elements[0]) and isset($Elements[0]['name'])
and $Elements[0]['name'] === 'p'
) {
unset($Elements[0]['name']);
}
2013-11-09 01:40:00 +04:00
return $Elements;
}
2014-01-18 17:10:24 +04:00
2018-03-19 01:37:40 +03:00
#
# AST Convenience
#
/**
* Replace occurrences $regexp with $Elements in $text. Return an array of
* elements representing the replacement.
*/
protected static function pregReplaceElements($regexp, $Elements, $text)
{
2018-12-04 19:24:25 +03:00
$newElements = [];
2018-03-19 01:37:40 +03:00
2018-12-04 19:24:25 +03:00
while (\preg_match($regexp, $text, $matches, \PREG_OFFSET_CAPTURE)) {
2018-03-19 01:37:40 +03:00
$offset = $matches[0][1];
2018-12-04 19:24:25 +03:00
$before = \substr($text, 0, $offset);
$after = \substr($text, $offset + \strlen($matches[0][0]));
2018-03-19 01:37:40 +03:00
2018-12-04 19:24:25 +03:00
$newElements[] = ['text' => $before];
2018-03-19 01:37:40 +03:00
2018-12-04 19:24:25 +03:00
foreach ($Elements as $Element) {
2018-03-19 01:37:40 +03:00
$newElements[] = $Element;
}
$text = $after;
}
2018-12-04 19:24:25 +03:00
$newElements[] = ['text' => $text];
2018-03-19 01:37:40 +03:00
return $newElements;
}
2014-02-21 04:22:31 +04:00
#
2015-01-16 04:18:07 +03:00
# Deprecated Methods
#
2018-12-04 19:24:25 +03:00
public function parse($text)
2015-01-16 04:18:07 +03:00
{
$markup = $this->text($text);
return $markup;
}
protected function sanitiseElement(array $Element)
{
static $goodAttribute = '/^[a-zA-Z0-9][a-zA-Z0-9-_]*+$/';
2018-12-04 19:24:25 +03:00
static $safeUrlNameToAtt = [
'a' => 'href',
'img' => 'src',
2018-12-04 19:24:25 +03:00
];
2018-12-04 19:24:25 +03:00
if (! isset($Element['name'])) {
unset($Element['attributes']);
return $Element;
}
2018-12-04 19:24:25 +03:00
if (isset($safeUrlNameToAtt[$Element['name']])) {
$Element = $this->filterUnsafeUrlInAttribute($Element, $safeUrlNameToAtt[$Element['name']]);
}
2018-12-04 19:24:25 +03:00
if (! empty($Element['attributes'])) {
foreach ($Element['attributes'] as $att => $val) {
# filter out badly parsed attribute
2018-12-04 19:24:25 +03:00
if (! \preg_match($goodAttribute, $att)) {
unset($Element['attributes'][$att]);
}
# dump onevent attribute
2018-12-04 19:24:25 +03:00
elseif (self::striAtStart($att, 'on')) {
unset($Element['attributes'][$att]);
}
}
2017-05-01 17:44:04 +03:00
}
return $Element;
}
protected function filterUnsafeUrlInAttribute(array $Element, $attribute)
{
2018-12-04 19:24:25 +03:00
foreach ($this->safeLinksWhitelist as $scheme) {
if (self::striAtStart($Element['attributes'][$attribute], $scheme)) {
return $Element;
}
}
2018-12-04 19:24:25 +03:00
$Element['attributes'][$attribute] = \str_replace(':', '%3A', $Element['attributes'][$attribute]);
return $Element;
}
2015-01-16 04:18:07 +03:00
#
# Static Methods
2014-04-17 11:59:35 +04:00
#
2014-02-21 04:22:31 +04:00
protected static function escape($text, $allowQuotes = false)
{
2018-12-04 19:24:25 +03:00
return \htmlspecialchars($text, $allowQuotes ? \ENT_NOQUOTES : \ENT_QUOTES, 'UTF-8');
}
protected static function striAtStart($string, $needle)
{
2018-12-04 19:24:25 +03:00
$len = \strlen($needle);
2018-12-04 19:24:25 +03:00
if ($len > \strlen($string)) {
return false;
2018-12-04 19:24:25 +03:00
} else {
return \strtolower(\substr($string, 0, $len)) === \strtolower($needle);
}
}
2018-12-04 19:24:25 +03:00
public static function instance($name = 'default')
2014-02-21 04:22:31 +04:00
{
2018-12-04 19:24:25 +03:00
if (isset(self::$instances[$name])) {
2014-02-21 04:22:31 +04:00
return self::$instances[$name];
}
$instance = new static();
2014-02-21 04:22:31 +04:00
self::$instances[$name] = $instance;
return $instance;
}
2018-12-04 19:24:25 +03:00
private static $instances = [];
2014-02-21 04:22:31 +04:00
#
2014-01-26 21:53:24 +04:00
# Fields
#
protected $DefinitionData;
2014-01-26 21:53:24 +04:00
#
2015-01-16 04:18:07 +03:00
# Read-Only
2014-01-18 17:10:24 +04:00
2018-12-04 19:24:25 +03:00
protected $specialCharacters = [
2018-04-23 16:09:30 +03:00
'\\', '`', '*', '_', '{', '}', '[', ']', '(', ')', '>', '#', '+', '-', '.', '!', '|', '~'
2018-12-04 19:24:25 +03:00
];
2014-04-17 11:59:35 +04:00
2018-12-04 19:24:25 +03:00
protected $StrongRegex = [
2018-04-08 17:41:18 +03:00
'*' => '/^[*]{2}((?:\\\\\*|[^*]|[*][^*]*+[*])+?)[*]{2}(?![*])/s',
'_' => '/^__((?:\\\\_|[^_]|_[^_]*+_)+?)__(?!_)/us',
2018-12-04 19:24:25 +03:00
];
2014-01-18 17:10:24 +04:00
2018-12-04 19:24:25 +03:00
protected $EmRegex = [
2014-11-28 15:03:12 +03:00
'*' => '/^[*]((?:\\\\\*|[^*]|[*][*][^*]+?[*][*])+?)[*](?![*])/s',
'_' => '/^_((?:\\\\_|[^_]|__[^_]*__)+?)_(?!_)\b/us',
2018-12-04 19:24:25 +03:00
];
2014-01-27 02:58:18 +04:00
2018-04-08 17:41:18 +03:00
protected $regexHtmlAttribute = '[a-zA-Z_:][\w:.-]*+(?:\s*+=\s*+(?:[^"\'=<>`\s]+|"[^"]*+"|\'[^\']*+\'))?+';
2018-12-04 19:24:25 +03:00
protected $voidElements = [
2014-10-29 23:29:23 +03:00
'area', 'base', 'br', 'col', 'command', 'embed', 'hr', 'img', 'input', 'link', 'meta', 'param', 'source',
2018-12-04 19:24:25 +03:00
];
2014-10-29 23:29:23 +03:00
2018-12-04 19:24:25 +03:00
protected $textLevelElements = [
2014-01-27 02:58:18 +04:00
'a', 'br', 'bdo', 'abbr', 'blink', 'nextid', 'acronym', 'basefont',
'b', 'em', 'big', 'cite', 'small', 'spacer', 'listing',
2014-05-01 03:02:14 +04:00
'i', 'rp', 'del', 'code', 'strike', 'marquee',
'q', 'rt', 'ins', 'font', 'strong',
2017-03-29 19:04:15 +03:00
's', 'tt', 'kbd', 'mark',
'u', 'xm', 'sub', 'nobr',
'sup', 'ruby',
'var', 'span',
'wbr', 'time',
2018-12-04 19:24:25 +03:00
];
}