aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/index.php b/index.php
index 6467e80..43cfae1 100644
--- a/index.php
+++ b/index.php
@@ -29,8 +29,9 @@
<body class="community">
<div id="navdoc">
<?php
- include 'lib/php-markdown/markdown.php';
- echo Markdown(file_get_contents('README.md'));
+ include 'lib/Parsedown/Parsedown.php';
+ $Parsedown = new Parsedown();
+ echo $Parsedown->text(file_get_contents('README.md'));
?>
</div>
<script src="/js/"></script>