PHP code example of tuchsoft / commonmark-ext-heading-shifter
1. Go to this page and download the library: Download tuchsoft/commonmark-ext-heading-shifter library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
tuchsoft / commonmark-ext-heading-shifter example snippets
use League\CommonMark\CommonMarkConverter;
use League\CommonMark\Environment;
use TuchSoft\CommonMarkHeadingShifter\HeadingShifterExtension;
$converter = new CommonMarkConverter([
'heading_shifter' => [
'shift_by' => 1
]
]);
$converter->getEnvironment()->addExtension(new HeadingShifterExtension());
$converter->convertToHtml("# Heading"); //<h2>Heading</h2>