1go-md2man(1) User Manual go-md2man(1)
2
3
4
6 go-md2man - Convert markdown files into manpages
7
8
9
11 go-md2man [-in=/path/to/md/file] [-out=/path/to/output]
12
13
14
16 go-md2man converts standard markdown formatted documents into manpages.
17 It is written purely in Go so as to reduce dependencies on 3rd party
18 libs.
19
20
21 By default, the input is stdin and the output is stdout.
22
23
24
26 Convert the markdown file go-md2man.1.md into a manpage:
27
28 go-md2man < go-md2man.1.md > go-md2man.1
29
30
31
32 Same, but using command line arguments instead of shell redirection:
33
34 go-md2man -in=go-md2man.1.md -out=go-md2man.1
35
36
37
38
40 January 2015, Originally compiled by Brian Goff (cpuguy83@gmail.com).
41
42
43
44go-md2man January 2015 go-md2man(1)