a recusive descent markdown parser in PHP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
177 B

<?php
require __DIR__."/vendor/autoload.php";
$source = file_get_contents(dirname(__FILE__)."/test/test1.md");
$Instance = new parkdown\Parkdown($source);
$Instance->html();