我正在尝试使用阿盟的CommonMark包创建一个扰流块。
块由三个倒排感叹号打开,可选后面跟着一个摘要;三个普通感叹号结束该块。
这是我到目前为止掌握的代码:
元素
<?php
use League\CommonMark\Block\Element\AbstractBlock;
use League\CommonMark\Cursor;
class Spoiler extends AbstractBlock {
private $summary;
public function __construct($summary = null) {
parent::__construct();
$this->summary = $summary;
}
public function getSummary() { return $this->summary; }
public function canContain(AbstractBlock $block) { return true; }
public function acceptsLines() { return true; }
public function isCode() { return false; }
public function matchesNextLine(Cursor $cursor) {
if ($cursor->match('(^!!!$)')) {
$this->lastLineBlank = true;
return false;
}
return true;
}
}解析器
<?php
use League\CommonMark\Block\Parser\AbstractBlockParser;
use League\CommonMark\ContextInterface;
use League\CommonMark\Cursor;
class SpoilerParser extends AbstractBlockParser {
public function parse(ContextInterface $context, Cursor $cursor) {
if ($cursor->isIndented()) return false;
$previousState = $cursor->saveState();
$spoiler = $cursor->match('(^¡¡¡(\s*.+)?)');
if (is_null($spoiler)) {
$cursor->restoreState($previousState);
return false;
}
$summary = trim(mb_substr($spoiler, mb_strlen('¡¡¡')));
if ($summary !== '') {
$context->addBlock(new Spoiler($summary));
} else {
$context->addBlock(new Spoiler());
}
return true;
}
}渲染器
<?php
use League\CommonMark\Block\Element\AbstractBlock;
use League\CommonMark\Block\Renderer\BlockRendererInterface;
use League\CommonMark\ElementRendererInterface;
use League\CommonMark\HtmlElement;
class SpoilerRenderer implements BlockRendererInterface {
public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, $inTightList = false) {
if (!($block instanceof Spoiler)) throw new \InvalidArgumentException('Incompatible block type: ' . get_class($block));
$summary = new HtmlElement('summary', [], $block->getSummary() ?: 'Click to expand spoiler');
$content = $summary . "\n" . $htmlRenderer->renderBlocks($block->children());
return new HtmlElement('details', [], $content);
}
}当我嵌套多个扰流器块时会出现问题:第一个终止符关闭所有块。
¡¡¡
1
¡¡¡
2
¡¡¡
Hello
!!!
3
!!!
4
!!!这是解析的AST:
League\CommonMark\Block\Element\Document
App\Helpers\Formatting\Element\Spoiler
League\CommonMark\Block\Element\Paragraph
League\CommonMark\Inline\Element\Text "1"
App\Helpers\Formatting\Element\Spoiler
League\CommonMark\Block\Element\Paragraph
League\CommonMark\Inline\Element\Text "2"
App\Helpers\Formatting\Element\Spoiler
League\CommonMark\Block\Element\Paragraph
League\CommonMark\Inline\Element\Text "Hello"
League\CommonMark\Block\Element\Paragraph
League\CommonMark\Inline\Element\Text "3"
League\CommonMark\Inline\Element\Newline
League\CommonMark\Inline\Element\Text "!!!"
League\CommonMark\Inline\Element\Newline
League\CommonMark\Inline\Element\Text "4"
League\CommonMark\Inline\Element\Newline
League\CommonMark\Inline\Element\Text "!!!"这是预期的AST:
League\CommonMark\Block\Element\Document
App\Helpers\Formatting\Element\Spoiler
League\CommonMark\Block\Element\Paragraph
League\CommonMark\Inline\Element\Text "1"
App\Helpers\Formatting\Element\Spoiler
League\CommonMark\Block\Element\Paragraph
League\CommonMark\Inline\Element\Text "2"
App\Helpers\Formatting\Element\Spoiler
League\CommonMark\Block\Element\Paragraph
League\CommonMark\Inline\Element\Text "Hello"
League\CommonMark\Block\Element\Paragraph
League\CommonMark\Inline\Element\Text "3"
League\CommonMark\Block\Element\Paragraph
League\CommonMark\Inline\Element\Text "4"发布于 2016-12-18 23:59:23
在这个场景中,matchesNextLine()将始终运行在顶级Spoiler上,这是基于DocParser::resetContainer()如何遍历AST的。相反,我建议使用SpoilerParser::parse()检查结束语法。例如,您可以在现有的解析器中添加类似的内容:
if ($cursor->match('/^!!!$/')) {
$container = $context->getContainer();
do {
if ($container instanceof Spoiler) {
$context->setContainer($container);
$context->setTip($container);
$context->getBlockCloser()->setLastMatchedContainer($container);
return true;
}
} while ($container = $container->parent());
}这似乎产生了预期的产出:
<details><summary>Click to expand spoiler</summary>
<p>1</p>
<details><summary>Click to expand spoiler</summary>
<p>2</p>
<details><summary>Click to expand spoiler</summary>
<p>Hello</p></details>
<p>3</p></details>
<p>4</p></details>
<p></p>免责声明:根据这个输出,可能是正确的,但我没有验证AST本身。我也没有检查我的建议是否会对解析过程产生负面影响,可能会导致与其他元素有关的问题或更深层次的嵌套,因此您可能需要对此进行跟踪。但是,这种通用方法(解析解析器中的!!!并操作上下文/AST)可能是您的最佳选择。
我希望这能帮上忙!
https://stackoverflow.com/questions/41211251
复制相似问题