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.

17 lines
232 B

<?php
require __DIR__."/vendor/autoload.php";
$source = file_get_contents(dirname(__FILE__)."/test/test1.md");
echo "
<style>
table {
width: 100%;
}
</style>
";
$Instance = new parkdown\Parkdown($source);
$Instance->html();