summaryrefslogtreecommitdiff
path: root/vendor/parsedown-0.9.0/README.md
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2014-03-09 13:12:39 +0100
committerPhilip Häusler <msquare@notrademark.de>2014-03-09 13:12:39 +0100
commit893bb5a9cf365c831e75fafc83dffdbced09a466 (patch)
treeef7a4f923ebb49a70697b0388af359b2b44b2109 /vendor/parsedown-0.9.0/README.md
parent82c0d2acc24a0b19de246c4f2c3d37a8e197d11e (diff)
added parsedown 0.9.0
Diffstat (limited to 'vendor/parsedown-0.9.0/README.md')
-rw-r--r--vendor/parsedown-0.9.0/README.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/vendor/parsedown-0.9.0/README.md b/vendor/parsedown-0.9.0/README.md
new file mode 100644
index 00000000..c87f7e11
--- /dev/null
+++ b/vendor/parsedown-0.9.0/README.md
@@ -0,0 +1,31 @@
+## Parsedown
+
+Better [Markdown](http://en.wikipedia.org/wiki/Markdown) parser for PHP.
+
+***
+
+[ [demo](http://parsedown.org/demo) ] [ [tests](http://parsedown.org/tests/) ]
+
+***
+
+### Features
+
+* [fast](http://parsedown.org/speed)
+* [consistent](http://parsedown.org/consistency)
+* [GitHub Flavored](https://help.github.com/articles/github-flavored-markdown)
+* [tested](https://travis-ci.org/erusev/parsedown) in PHP 5.2, 5.3, 5.4, 5.5 and [hhvm](http://www.hhvm.com/)
+* friendly to international input
+
+### Installation
+
+Include `Parsedown.php` or install [the composer package](https://packagist.org/packages/erusev/parsedown).
+
+### Example
+
+```php
+$text = 'Hello *Parsedown*!';
+
+$result = Parsedown::instance()->parse($text);
+
+echo $result; # prints: <p>Hello <em>Parsedown</em>!</p>
+```