blob: 29d5d883716da3e082389441be87a107110fbf64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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/)
|