File: go-md2man.1.md

package info (click to toggle)
go-md2man-v2 2.0.0%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, bullseye-backports, experimental, sid
  • size: 144 kB
  • sloc: makefile: 40; sh: 9
file content (23 lines) | stat: -rw-r--r-- 668 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
go-md2man 1 "January 2015" go-md2man "User Manual"
==================================================

# NAME
  go-md2man - Convert markdown files into manpages

# SYNOPSIS
  go-md2man -in=[/path/to/md/file] -out=[/path/to/output]

# Description
  go-md2man converts standard markdown formatted documents into manpages. It is
  written purely in Go so as to reduce dependencies on 3rd party libs.

  By default, the input is stdin and the output is stdout.

# Example
  Convert the markdown file "go-md2man.1.md" into a manpage.

    go-md2man -in=go-md2man.1.md -out=go-md2man.1.out

# HISTORY
  January 2015, Originally compiled by Brian Goff( cpuguy83@gmail.com )