1.2.1490. ext/cmark¶
Extension Cmark, for Common Mark.
cmark provides access to the reference implementation of CommonMark, a rationalized version of Markdown syntax with a specification.
<?php
$text = new CommonMark\Node\Text;
$text->literal = 'Hello World';
$document = new CommonMark\Node\Document;
$document->appendChild(
(new CommonMark\Node\Paragraph)
->appendChild($text));
echo CommonMark\Render\HTML($document);
?>
1.2.1490.1. Specs¶
Short name |
Extensions/Extcmark |
Rulesets |
|
Exakat since |
1.2.7 |
PHP Version |
All |
Severity |
|
Time To Fix |
|
Precision |
Very high |
Available in |