* * 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\FootnoteBackref; use League\CommonMark\Inline\Element\AbstractInline; use League\CommonMark\Inline\Renderer\InlineRendererInterface; use League\CommonMark\Util\ConfigurationAwareInterface; use League\CommonMark\Util\ConfigurationInterface; final class FootnoteBackrefRenderer implements InlineRendererInterface, ConfigurationAwareInterface { /** @var ConfigurationInterface */ private $config; public function render(AbstractInline $inline, ElementRendererInterface $DWRenderer) { if (!($inline instanceof FootnoteBackref)) { throw new \InvalidArgumentException('Incompatible inline type: ' . \get_class($inline)); } return ''; } public function setConfiguration(ConfigurationInterface $configuration) { $this->config = $configuration; } }