/home/techb158/dev.balacoffee.com/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
ConverterInterface.php7870644editdlrm
GithubFlavoredMarkdownConverter.php11970644editdlrm
MarkdownConverter.php26220644editdlrm
MarkdownConverterInterface.php8460644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/league/commonmark/src/ConverterInterface.php (787B)
* * 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\Exception\CommonMarkException; use League\CommonMark\Output\RenderedContentInterface; use League\Config\Exception\ConfigurationExceptionInterface; /** * Interface for a service which converts content from one format (like Markdown) to another (like HTML). */ interface ConverterInterface { /** * @throws CommonMarkException * @throws ConfigurationExceptionInterface */ public function convert(string $input): RenderedContentInterface; }