PHP code example of benjaminhoegh / parsedown-toc
1. Go to this page and download the library: Download benjaminhoegh/parsedown-toc 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-toc example snippets
tent = file_get_contents('sample.md'); // Sample Markdown with '[toc]' tag
$ParsedownToc = new ParsedownToc();
$html = $ParsedownToc->text($content); // Parses '[toc]' tag to ToC if exists
echo $html;
$content = file_get_contents('sample.md');
$ParsedownToc = new \ParsedownToc();
$body = $ParsedownToc->body($content);
$toc = $ParsedownToc->contentsList();
echo $toc; // ToC in <ul> list
echo $body; // Main content
$ParsedownToc->setCreateAnchorIDCallback(function($text, $level) {
$slugify = new Slugify();
return $slugify->slugify($text);
});