summaryrefslogtreecommitdiffstats
path: root/install.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2016-06-12 22:06:10 +0200
committerFlorian Pritz <bluewind@xinu.at>2016-06-12 22:06:10 +0200
commitbd0925f3671882d03d5f2d9006b29656257f0d6c (patch)
treeef4d237a068a7e06e65e35f3ba7e10a6ddec63b7 /install.php
parente13fd0f0ac82bc815d53cebae138dc5541c3098a (diff)
Switch to PHP based markdown renderer (parsedown)
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'install.php')
-rw-r--r--install.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/install.php b/install.php
index 1deb8cc2a..5287fbebb 100644
--- a/install.php
+++ b/install.php
@@ -29,21 +29,6 @@ $buf = ob_get_contents();
ob_end_clean();
$buf == "works" || $errors .= "passthru() failed\n";
-// test perl deps
-$perldeps = array(
- "Text::Markdown"
-);
-foreach ($perldeps as $dep) {
- ob_start();
- passthru("perl 2>&1 -M'$dep' -e1");
- $buf = ob_get_contents();
- ob_end_clean();
- if ($buf != "") {
- $errors .= " - failed to find perl module: $dep.\n";
- $errors .= $buf;
- }
-}
-
// test pygmentize
ob_start();
passthru("pygmentize -V 2>&1", $buf);