diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..29d5d88 --- /dev/null +++ b/README.md @@ -0,0 +1,37 @@ +# convert-markdown + +Simple Markdown to HTML converter using lowdown_file(3). + +## Usage + +```console +$ convert-markdown +# header +hello **world** +[Ctrl-D] +<h1 id="header">header</h1> + +<p>hello <strong>world</strong></p> +``` + +```console +$ convert-markdown < README.md +<h1 id="convert-markdown">convert-markdown</h1> + +<p>Simple Markdown to HTML converter using lowdown_file(3).</p> + +<h2 id="Usage">Usage</h2> + +<pre><code class="language-console">$ convert-markdown +# header +hello **world** +[Ctrl-D] +<h1 id="header">header</h1> + +<p>hello <strong>world</strong></p> +</code></pre> +``` + +## License + +[ISC](https://opensource.org/license/isc-license-txt/) |
