...

Text file src/github.com/cpuguy83/go-md2man/v2/go-md2man.1.md

Documentation: github.com/cpuguy83/go-md2man/v2

     1go-md2man 1 "January 2015" go-md2man "User Manual"
     2==================================================
     3
     4# NAME
     5go-md2man - Convert markdown files into manpages
     6
     7# SYNOPSIS
     8**go-md2man** [**-in**=*/path/to/md/file*] [**-out**=*/path/to/output*]
     9
    10# DESCRIPTION
    11**go-md2man** converts standard markdown formatted documents into manpages. It is
    12written purely in Go so as to reduce dependencies on 3rd party libs.
    13
    14By default, the input is stdin and the output is stdout.
    15
    16# EXAMPLES
    17Convert the markdown file *go-md2man.1.md* into a manpage:
    18```
    19go-md2man < go-md2man.1.md > go-md2man.1
    20```
    21
    22Same, but using command line arguments instead of shell redirection:
    23```
    24go-md2man -in=go-md2man.1.md -out=go-md2man.1
    25```
    26
    27# HISTORY
    28January 2015, Originally compiled by Brian Goff (cpuguy83@gmail.com).

View as plain text