mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-11-11 15:48:51 +01:00
22 lines
557 B
PHP
22 lines
557 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>
|
|
CanvasBlocker FAQs
|
|
</title>
|
|
<link rel="stylesheet" href="../default.css" type="text/css">
|
|
</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>
|