Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cpuguy83 committed Jul 30, 2014
0 parents commit 6d7399d
Show file tree
Hide file tree
Showing 2 changed files with 287 additions and 0 deletions.
233 changes: 233 additions & 0 deletions mangen/mangen.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,233 @@
package mangen

import (
"bytes"
"fmt"

"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) 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")
}

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) {
// a pretty lame thing to do...
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()

out.WriteString("\n.")
switch level {
case 1:
out.WriteString("TH ")
case 2:
out.WriteString("SH ")
default:
out.WriteString("SS ")
}
if !text() {
out.Truncate(marker)
return
}
out.WriteString("\n")
}

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.TP\n")
if !text() {
out.Truncate(marker)
return
}
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 (m *Man) NormalText(out *bytes.Buffer, text []byte) {
escapeSpecialChars(out, text)
}

// header and footer
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])
}
}
54 changes: 54 additions & 0 deletions md2man.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
package main

import (
"flag"
"fmt"
"io/ioutil"
"os"

"github.com/cpuguy83/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_STRIKETHROUGH
extensions |= blackfriday.EXTENSION_SPACE_HEADERS

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)
}
}

0 comments on commit 6d7399d

Please sign in to comment.