* * Original code based on the followings: * - CommonMark JS reference parser (https://bitly.com/commonmark-js) (c) John MacFarlane * - league/commonmark (https://github.com/thephpleague/commonmark) (c) Colin O'Dell * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ declare(strict_types=1); namespace DokuWiki\Plugin\Commonmark\Extension\Renderer\Inline; use League\CommonMark\ElementRendererInterface; use League\CommonMark\Extension\Footnote\Node\FootnoteRef; use League\CommonMark\Extension\Footnote\Node\Footnote; use League\CommonMark\Inline\Element\AbstractInline; use League\CommonMark\Renderer\NodeRendererInterface; use League\CommonMark\Util\ConfigurationAwareInterface; use League\CommonMark\Util\ConfigurationInterface; final class FootnoteRefRenderer implements NodeRendererInterface, ConfigurationAwareInterface { /** @var ConfigurationInterface */ private $config; public function render(AbstractInline $inline, ElementRendererInterface $DWRenderer) { if (!($inline instanceof FootnoteRef)) { throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); } $attrs = $inline->getData('attributes', []); # get parents iteratively until get top-level document $document = $inline->parent()->parent(); while (get_class($document)!='League\CommonMark\Block\Element\Document'){ $document = $document->parent(); } $walker = $document->walker(); $title = $inline->getReference()->getLabel(); while ($event = $walker->next()) { $node = $event->getNode(); if ($node instanceof Footnote && $title == $node->getReference()->getLabel()) { $text = $DWRenderer->renderBlock($node->children()[0]); break; } } $result = '(('. $text. '))'; return $result; } public function setConfiguration(ConfigurationInterface $configuration) { $this->config = $configuration; } }