league/commonmark
Extensible PHP Markdown parser supporting the full CommonMark spec and GitHub-Flavored Markdown. Works with PHP 7.4+ (mbstring) and provides simple converters to turn Markdown into HTML with configurable safety options.
{{ site.data.project.highlights.description }}
This library can be installed via Composer:
composer require league/commonmark
See the installation section for more details.
Simply instantiate the converter and start converting some Markdown to HTML!
use League\CommonMark\CommonMarkConverter;
$converter = new CommonMarkConverter();
echo $converter->convertToHtml('# Hello World!');
// <h1>Hello World!</h1>
Important: See the basic usage and security sections for important details.
How can I help you explore Laravel packages today?