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.
23 lines
411 B
23 lines
411 B
<?php
|
|
|
|
require __DIR__."/vendor/autoload.php";
|
|
|
|
|
|
$source = file_get_contents(dirname(__FILE__)."/README.md");
|
|
//$source = file_get_contents(dirname(__FILE__)."/tests/paragraph.md");
|
|
//$source = file_get_contents(dirname(__FILE__)."/tests/list.md");
|
|
|
|
echo "
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
";
|
|
|
|
$Instance = new parkdown\Parkdown($source);
|
|
echo $Instance->html(); |