* * 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\Node\Block\Document; use League\CommonMark\Node\Node; use League\CommonMark\Renderer\ChildNodeRendererInterface; use League\CommonMark\Renderer\NodeRendererInterface; final class DocumentRenderer implements NodeRendererInterface { /** * @param Document $block * @param ChildNodeRendererInterface $DWRenderer * @param bool $inTightList * * @return string */ public function render(Node $node, ChildNodeRendererInterface $DWRenderer): string { Document::assertInstanceOf($node); $wholeDoc = $DWRenderer->renderNodes($node->children()); return $wholeDoc === '' ? '' : $wholeDoc . "\n"; } }