PHP code example of alto / commonmark-code-block-title
1. Go to this page and download the library: Download alto/commonmark-code-block-title 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/ */
alto / commonmark-code-block-title example snippets
use Alto\CommonMark\Extension\CodeBlockTitle\CodeBlockTitleExtension;
use League\CommonMark\Environment\Environment;
$environment = new Environment();
$environment->addExtension(new CodeBlockTitleExtension());
title="src/App.php"
echo "Hello";