You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thebookofshaders/index.php

10 lines
244 B
PHTML

<?php
9 years ago
$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");
?>