1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00
parsedown/README.md

35 lines
789 B
Markdown
Raw Normal View History

2013-11-16 11:51:01 +04:00
## Parsedown
2013-07-24 00:32:45 +04:00
2013-12-01 02:10:30 +04:00
Better [Markdown][1] parser for PHP.
2013-07-11 00:22:16 +04:00
2013-11-23 17:58:58 +04:00
***
2013-12-01 02:10:30 +04:00
[home](http://parsedown.org/) · [demo](http://parsedown.org/demo) · [tests](http://parsedown.org/tests/)
2013-11-23 17:58:58 +04:00
***
2013-12-01 02:10:30 +04:00
Features:
2013-11-23 17:58:58 +04:00
2013-12-01 02:10:30 +04:00
* [fast](http://parsedown.org/speed)
* [consistent](http://parsedown.org/consistency)
2013-11-23 17:58:58 +04:00
* [ GitHub Flavored ][2]
* tested in PHP 5.2, 5.3, 5.4 and 5.5
* friendly to international input
2013-07-23 11:36:28 +04:00
2013-07-24 00:32:45 +04:00
### Installation
Include `Parsedown.php` or install [the composer package](https://packagist.org/packages/erusev/parsedown).
### Example
2013-07-24 00:32:45 +04:00
```php
$text = 'Hello **Parsedown**!';
$result = Parsedown::instance()->parse($text);
echo $result; # prints: <p>Hello <strong>Parsedown</strong>!</p>
2013-11-13 03:38:29 +04:00
```
2013-11-21 01:10:03 +04:00
[1]: http://daringfireball.net/projects/markdown/
2013-11-23 17:58:58 +04:00
[2]: https://help.github.com/articles/github-flavored-markdown