1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-06-09 22:59:50 +02:00
CanvasBlocker/.documentation/faq/index.php

21 lines
493 B
PHP
Raw Normal View History

2020-02-16 19:57:11 +01:00
<!DOCTYPE html>
<html>
<head>
<title>
CanvasBlocker FAQs
</title>
</head>
<body>
<header><h1>CanvasBlocker FAQs</h1></header>
<?php
include_once("../../kamiKatze/autoload.php");
$parser = new MarkdownParser();
foreach (new DirectoryIterator("./") as $file){
if (!$file->isDot() && !$file->isDir() && $file->getExtension() === "md"){
$markdown = $parser->parse(file_get_contents($file->getPathname()));
echo $markdown->view("html");
}
}
?>
</body>
</html>