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