/var/www/flurhymez/vendor/league/commonmark/src
NameSizeModeActions
Delimiter/-0755rm
Environment/-0755rm
Event/-0755rm
Exception/-0755rm
Extension/-0755rm
Input/-0755rm
Node/-0755rm
Normalizer/-0755rm
Output/-0755rm
Parser/-0755rm
Reference/-0755rm
Renderer/-0755rm
Util/-0755rm
Xml/-0755rm
CommonMarkConverter.php11820644editdlrm
GithubFlavoredMarkdownConverter.php11970644editdlrm
MarkdownConverter.php19900644editdlrm
MarkdownConverterInterface.php6360644editdlrm
Edit: /var/www/flurhymez/vendor/league/commonmark/src/MarkdownConverterInterface.php (636B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\CommonMark; use League\CommonMark\Output\RenderedContentInterface; /** * Interface for a service which converts Markdown to HTML. */ interface MarkdownConverterInterface { /** * Converts Markdown to HTML. * * @throws \RuntimeException */ public function convertToHtml(string $markdown): RenderedContentInterface; }