/var/www/flurhymez/vendor/league/commonmark/src/Renderer
NameSizeModeActions
Block/-0755rm
Inline/-0755rm
ChildNodeRendererInterface.php7010644editdlrm
HtmlRenderer.php28490644editdlrm
MarkdownRendererInterface.php6530644editdlrm
NodeRendererInterface.php6050644editdlrm
Edit: /var/www/flurhymez/vendor/league/commonmark/src/Renderer/NodeRendererInterface.php (605B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark\Renderer; use League\CommonMark\Node\Node; interface NodeRendererInterface { /** * @return \Stringable|string|null * * @throws \InvalidArgumentException if the wrong type of Node is provided */ public function render(Node $node, ChildNodeRendererInterface $childRenderer); }