summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/_inc/lib/markdown/test.php')
-rw-r--r--plugins/jetpack/_inc/lib/markdown/test.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/plugins/jetpack/_inc/lib/markdown/test.php b/plugins/jetpack/_inc/lib/markdown/test.php
deleted file mode 100644
index 8a0b08be..00000000
--- a/plugins/jetpack/_inc/lib/markdown/test.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-require 'extra.php';
-require 'gfm.php';
-$parser = new WPCom_GHF_Markdown_Parser;
-
-$text1 = <<<EOD
-I am just back\slashing up a *storm* \*mofo*.
-
-EOD;
-
-$text = 'Just rockin in the *free* world
-
-```html
-<html lang="en">
-</html>
-```
-';
-#echo $text;
-echo $parser->transform( $text );
-echo "\n\n\n";
-#echo $parser->hashBlock( '<pre>foobar</pre>' );
-
-
-$foo = <<<EOD
-Here is a *list* with things:
-
-* some `code` is better than others
-* **my** code is better than *yours*
-* the best code is that which need not be written
-
-Selah.
-EOD;