pax_global_header00006660000000000000000000000064124617727030014523gustar00rootroot0000000000000052 comment=16d160379d14906c4707631f1987434e95f7f7b5 go-md2man-1.0.2/000077500000000000000000000000001246177270300133045ustar00rootroot00000000000000go-md2man-1.0.2/README.md000066400000000000000000000024261246177270300145670ustar00rootroot00000000000000go-md2man ========= ** Work in Progress ** This still needs a lot of help to be complete, or even usable! Uses blackfriday to process markdown into man pages. ### Usage ./md2man -in /path/to/markdownfile.md -out /manfile/output/path # License Copyright (c) 2014 Brian Goff Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. go-md2man-1.0.2/go-md2man.1.md000066400000000000000000000011311246177270300155420ustar00rootroot00000000000000go-md2man 1 "January 2015" go-md2man "User Manual" ================================================== # NAME go-md2man - Convert mardown 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. # Example Convert the markdown file "go-md2man.1.md" into a manpage. go-md2man -in=README.md -out=go-md2man.1.out # HISTORY Janury 2015, Originally compiled by Brian Goff( cpuguy83@gmail.com ) go-md2man-1.0.2/mangen/000077500000000000000000000000001246177270300145515ustar00rootroot00000000000000go-md2man-1.0.2/mangen/mangen.go000066400000000000000000000130671246177270300163540ustar00rootroot00000000000000package mangen import ( "bytes" "fmt" "strings" "github.com/russross/blackfriday" ) type Man struct{} func ManRenderer(flags int) blackfriday.Renderer { return &Man{} } func (m *Man) GetFlags() int { return 0 } func (m *Man) TitleBlock(out *bytes.Buffer, text []byte) { out.WriteString(".TH ") splitText := bytes.Split(text, []byte("\n")) for i, line := range splitText { line = bytes.TrimPrefix(line, []byte("% ")) if i == 0 { line = bytes.Replace(line, []byte("("), []byte("\" \""), 1) line = bytes.Replace(line, []byte(")"), []byte("\" \""), 1) } line = append([]byte("\""), line...) line = append(line, []byte("\" ")...) out.Write(line) } out.WriteString(" \"\"\n") } func (m *Man) BlockCode(out *bytes.Buffer, text []byte, lang string) { out.WriteString("\n.PP\n.RS\n\n.nf\n") escapeSpecialChars(out, text) out.WriteString("\n.fi\n.RE\n") } func (m *Man) BlockQuote(out *bytes.Buffer, text []byte) { out.WriteString("\n.PP\n.RS\n") out.Write(text) out.WriteString("\n.RE\n") } func (m *Man) BlockHtml(out *bytes.Buffer, text []byte) { fmt.Errorf("man: BlockHtml not supported") out.Write(text) } func (m *Man) Header(out *bytes.Buffer, text func() bool, level int, id string) { marker := out.Len() switch { case marker == 0: // This is the doc header out.WriteString(".TH ") case level == 1: out.WriteString("\n\n.SH ") case level == 2: out.WriteString("\n.SH ") default: out.WriteString("\n.SS ") } if !text() { out.Truncate(marker) return } } func (m *Man) HRule(out *bytes.Buffer) { out.WriteString("\n.ti 0\n\\l'\\n(.lu'\n") } func (m *Man) List(out *bytes.Buffer, text func() bool, flags int) { marker := out.Len() out.WriteString(".IP ") if flags&blackfriday.LIST_TYPE_ORDERED != 0 { out.WriteString("\\(bu 2") } else { out.WriteString("\\n+[step" + string(flags) + "]") } out.WriteString("\n") if !text() { out.Truncate(marker) return } } func (m *Man) ListItem(out *bytes.Buffer, text []byte, flags int) { out.WriteString("\n\\item ") out.Write(text) } func (m *Man) Paragraph(out *bytes.Buffer, text func() bool) { marker := out.Len() out.WriteString("\n.PP\n") if !text() { out.Truncate(marker) return } if marker != 0 { out.WriteString("\n") } } // TODO: This might now work func (m *Man) Table(out *bytes.Buffer, header []byte, body []byte, columnData []int) { out.WriteString(".TS\nallbox;\n") out.Write(header) out.Write(body) out.WriteString("\n.TE\n") } func (m *Man) TableRow(out *bytes.Buffer, text []byte) { if out.Len() > 0 { out.WriteString("\n") } out.Write(text) out.WriteString("\n") } func (m *Man) TableHeaderCell(out *bytes.Buffer, text []byte, align int) { if out.Len() > 0 { out.WriteString(" ") } out.Write(text) out.WriteString(" ") } // TODO: This is probably broken func (m *Man) TableCell(out *bytes.Buffer, text []byte, align int) { if out.Len() > 0 { out.WriteString("\t") } out.Write(text) out.WriteString("\t") } func (m *Man) Footnotes(out *bytes.Buffer, text func() bool) { } func (m *Man) FootnoteItem(out *bytes.Buffer, name, text []byte, flags int) { } func (m *Man) AutoLink(out *bytes.Buffer, link []byte, kind int) { out.WriteString("\n\\[la]") out.Write(link) out.WriteString("\\[ra]") } func (m *Man) CodeSpan(out *bytes.Buffer, text []byte) { out.WriteString("\\fB\\fC") escapeSpecialChars(out, text) out.WriteString("\\fR") } func (m *Man) DoubleEmphasis(out *bytes.Buffer, text []byte) { out.WriteString("\\fB") out.Write(text) out.WriteString("\\fP") } func (m *Man) Emphasis(out *bytes.Buffer, text []byte) { out.WriteString("\\fI") out.Write(text) out.WriteString("\\fP") } func (m *Man) Image(out *bytes.Buffer, link []byte, title []byte, alt []byte) { fmt.Errorf("man: Image not supported") } func (m *Man) LineBreak(out *bytes.Buffer) { out.WriteString("\n.br\n") } func (m *Man) Link(out *bytes.Buffer, link []byte, title []byte, content []byte) { m.AutoLink(out, link, 0) } func (m *Man) RawHtmlTag(out *bytes.Buffer, tag []byte) { fmt.Errorf("man: Raw HTML not supported") } func (m *Man) TripleEmphasis(out *bytes.Buffer, text []byte) { out.WriteString("\\s+2") out.Write(text) out.WriteString("\\s-2") } func (m *Man) StrikeThrough(out *bytes.Buffer, text []byte) { fmt.Errorf("man: strikethrough not supported") } func (m *Man) FootnoteRef(out *bytes.Buffer, ref []byte, id int) { } func (m *Man) Entity(out *bytes.Buffer, entity []byte) { // TODO: convert this into a unicode character or something out.Write(entity) } func processFooterText(text []byte) []byte { text = bytes.TrimPrefix(text, []byte("% ")) newText := []byte{} textArr := strings.Split(string(text), ") ") for i, w := range textArr { if i == 0 { w = strings.Replace(w, "(", "\" \"", 1) w = fmt.Sprintf("\"%s\"", w) } else { w = fmt.Sprintf(" \"%s\"", w) } newText = append(newText, []byte(w)...) } newText = append(newText, []byte(" \"\"")...) return newText } func (m *Man) NormalText(out *bytes.Buffer, text []byte) { escapeSpecialChars(out, text) } func (m *Man) DocumentHeader(out *bytes.Buffer) { } func (m *Man) DocumentFooter(out *bytes.Buffer) { } func needsBackslash(c byte) bool { for _, r := range []byte("-_{}&\\~") { if c == r { return true } } return false } func escapeSpecialChars(out *bytes.Buffer, text []byte) { for i := 0; i < len(text); i++ { // directly copy normal characters org := i for i < len(text) && !needsBackslash(text[i]) { i++ } if i > org { out.Write(text[org:i]) } // escape a character if i >= len(text) { break } out.WriteByte('\\') out.WriteByte(text[i]) } } go-md2man-1.0.2/md2man.go000066400000000000000000000022111246177270300150050ustar00rootroot00000000000000package main import ( "flag" "fmt" "io/ioutil" "os" "github.com/cpuguy83/go-md2man/mangen" "github.com/russross/blackfriday" ) var inFilePath = flag.String("in", "", "Path to file to be processed") var outFilePath = flag.String("out", "", "Path to output processed file") func main() { flag.Parse() inFile, err := os.Open(*inFilePath) if err != nil { fmt.Println(err) os.Exit(1) } defer inFile.Close() doc, err := ioutil.ReadAll(inFile) if err != nil { fmt.Println(err) os.Exit(1) } renderer := mangen.ManRenderer(0) extensions := 0 extensions |= blackfriday.EXTENSION_NO_INTRA_EMPHASIS extensions |= blackfriday.EXTENSION_TABLES extensions |= blackfriday.EXTENSION_FENCED_CODE extensions |= blackfriday.EXTENSION_AUTOLINK extensions |= blackfriday.EXTENSION_SPACE_HEADERS extensions |= blackfriday.EXTENSION_FOOTNOTES extensions |= blackfriday.EXTENSION_TITLEBLOCK out := blackfriday.Markdown(doc, renderer, extensions) outFile, err := os.Create(*outFilePath) if err != nil { fmt.Println(err) os.Exit(1) } defer outFile.Close() _, err = outFile.Write(out) if err != nil { fmt.Println(err) os.Exit(1) } }