Update the docs to indicate that Parsedown can be used at the CLI

This commit is contained in:
Scott Baker 2014-01-30 07:58:37 -08:00
parent ed28cea31d
commit ba4ba44674

View File

@ -29,3 +29,9 @@ $result = Parsedown::instance()->parse($text);
echo $result; # prints: <p>Hello <em>Parsedown</em>!</p>
```
### CLI Example
```
php Parsedown.php document.md > document.html
```