mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-09 19:10:24 +00:00
10 lines
244 B
PHP
10 lines
244 B
PHP
<?php
|
|
$path = ".";
|
|
include("header.php");
|
|
echo '<div id="content">';
|
|
include("src/parsedown/Parsedown.php");
|
|
$Parsedown = new Parsedown();
|
|
echo $Parsedown->text(file_get_contents ('README.md'));
|
|
echo '</div>';
|
|
include("footer.php");
|
|
?>
|