blob: 22d999953a6bbfb84c0c4d878b195c96bc9f629f (
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
|
## Name
md - render markdown documents
## Synopsis
```**sh
$ md [--html] [input-file.md]
```
## Description
Read a Markdown document and render it using either terminal
escape sequences (the default) or HTML. If a file name is given,
`md` reads the document from that file; by default it reads its
standard input.
## Options
* `--html`: Render the document into HTML.
## Examples
Here's how you can render this man page into HTML:
```sh
$ md --html /usr/share/man/man1/md.md
```
|