mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 04:47:34 +00:00
Base: Write some initial man pages
It ain't much, but it's honest work!
This commit is contained in:
parent
36eea6c04b
commit
fed96f455d
8 changed files with 256 additions and 0 deletions
28
Base/usr/share/man/man1/md.md
Normal file
28
Base/usr/share/man/man1/md.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
## Name
|
||||
|
||||
md - render markdown documents
|
||||
|
||||
## Synposis
|
||||
|
||||
```**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
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue