PHP code example of benjaminhoegh / parsedown-extended
1. Go to this page and download the library: Download benjaminhoegh/parsedown-extended 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/ */
benjaminhoegh / parsedown-extended example snippets
use BenjaminHoegh\ParsedownExtended\ParsedownExtended;
$parsedown = new ParsedownExtended();
echo $parsedown->text('Hello _Parsedown_!');