From ba4ba446742e1abaa02c446b1ccdcf36cdf4911a Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Thu, 30 Jan 2014 07:58:37 -0800 Subject: [PATCH] Update the docs to indicate that Parsedown can be used at the CLI --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index c87f7e1..5078bd6 100644 --- a/README.md +++ b/README.md @@ -29,3 +29,9 @@ $result = Parsedown::instance()->parse($text); echo $result; # prints:

Hello Parsedown!

``` + +### CLI Example + +``` +php Parsedown.php document.md > document.html +```