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

20 lines
728 B
Markdown
Raw Normal View History

## Parsedown PHP
2013-07-24 00:32:45 +04:00
2013-07-18 01:58:53 +04:00
Parsedown is a parser for Markdown. It parses Markdown text the way people do. First, it divides texts into blocks. Then it looks at how these blocks start and how they relate to each other. Finally, it looks for special characters to identify inline elements. As a result, Parsedown is (super) fast, consistent and clean.
2013-07-11 00:22:16 +04:00
[Explorer (demo)](http://parsedown.org/explorer/)
2013-07-23 11:36:28 +04:00
[Tests](http://parsedown.org/tests/)
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-07-24 01:32:31 +04:00
```