* * 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. */ namespace DokuWiki\Plugin\Commonmark\Extension\Renderer\Block; use League\CommonMark\Extension\CommonMark\Node\Block\FencedCode; use League\CommonMark\Node\Node; use League\CommonMark\Renderer\ChildNodeRendererInterface; use League\CommonMark\Renderer\NodeRendererInterface; use League\CommonMark\Util\Xml; use League\CommonMark\Xml\XmlNodeRendererInterface; final class FencedCodeRenderer implements NodeRendererInterface { /** * @param FencedCode $block * @param ChildNodeRendererInterface $DWRenderer * @param bool $inTightList * * @return string */ public function render(Node $node, ChildNodeRendererInterface $DWRenderer): string { FencedCode::assertInstanceOf($node); $attrs = $node->data->getData('attributes'); $infoWords = $node->getInfoWords(); # for default value not specifying infoword $entertag = 'code'; $exittag = 'code'; if (\count($infoWords) !== 0 && \strlen($infoWords[0]) !== 0) { switch($infoWords[0]) { case 'html': # only supports html block; it is not possible for express html inline span in Commonmark syntax $entertag = 'HTML'; $exittag = 'HTML'; break; case 'nowiki': # DW syntax $entertag = $infoWords[0]; $exittag = $infoWords[0]; break; case 'dokuwiki': # passing DW codes (e.g. tag, struct, etc.) $entertag = ''; $exittag = ''; break; default: $entertag = 'code ' . $infoWords[0]; $exittag = 'code'; } } # Do not escape code block; BELIEVE DOKUWIKI! #$result = Xml::escape($node->getStringContent()); $result = $node->getLiteral(); if ($entertag): $result = '<' . $entertag . ">\n" . $result . ""; endif; return $result; } }