layout: default
{{ 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.