1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 08:34:58 +00:00
serenity/Base/usr/share/man/man1/md.md
Tim Ledbetter 8f253a745e Base: Update man pages for utilities
Man pages for utilities now more closely resemble ArgsParser output
2023-04-01 11:49:57 +01:00

28 lines
495 B
Markdown

## 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
* `-H`, `--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
```