1
Fork 0
md2vim/md2vim.go

67 lines
1.6 KiB
Go
Raw Normal View History

2015-08-07 10:18:13 +00:00
package main
import (
"flag"
"fmt"
"io/ioutil"
"log"
"os"
2015-08-10 06:56:55 +00:00
"path"
2015-08-07 10:18:13 +00:00
"github.com/russross/blackfriday"
)
func usage() {
2015-08-10 06:56:55 +00:00
fmt.Fprintf(os.Stderr, "Usage: %s [options] input output\n", path.Base(os.Args[0]))
2016-02-25 19:31:22 +00:00
fmt.Fprintf(os.Stderr, "https://foosoft.net/projects/md2vim/\n\n")
2015-08-07 10:18:13 +00:00
fmt.Fprintf(os.Stderr, "Parameters:\n")
flag.PrintDefaults()
}
2015-08-09 02:35:15 +00:00
2015-08-07 10:18:13 +00:00
func main() {
2015-08-11 05:56:14 +00:00
cols := flag.Int("cols", defNumCols, "number of columns to use for layout")
tabs := flag.Int("tabs", defTabSize, "tab width specified in number of spaces")
2015-08-09 05:37:09 +00:00
notoc := flag.Bool("notoc", false, "do not generate table of contents for headings")
norules := flag.Bool("norules", false, "do not generate horizontal rules above headings")
pascal := flag.Bool("pascal", false, "use PascalCase for abbreviating tags")
2015-08-09 05:57:43 +00:00
desc := flag.String("desc", "", "short description of the help file")
2015-08-07 10:18:13 +00:00
flag.Usage = usage
flag.Parse()
args := flag.Args()
2015-08-09 05:18:09 +00:00
if len(args) < 2 {
2015-08-07 10:18:13 +00:00
flag.Usage()
2015-09-15 02:35:49 +00:00
os.Exit(2)
2015-08-07 10:18:13 +00:00
}
2015-08-09 05:18:09 +00:00
input, err := ioutil.ReadFile(args[0])
if err != nil {
2015-08-11 05:56:14 +00:00
log.Fatalf("unable to read from file: %s", args[0])
2015-08-09 05:18:09 +00:00
}
2015-08-09 05:37:09 +00:00
flags := 0
if *notoc {
2015-08-11 05:56:14 +00:00
flags |= flagNoToc
2015-08-09 05:37:09 +00:00
}
if *norules {
2015-08-11 05:56:14 +00:00
flags |= flagNoRules
2015-08-09 05:37:09 +00:00
}
if *pascal {
2015-08-11 05:56:14 +00:00
flags |= flagPascal
2015-08-09 05:37:09 +00:00
}
renderer := VimDocRenderer(args[1], *desc, *cols, *tabs, flags)
2015-08-09 04:12:17 +00:00
extensions := blackfriday.EXTENSION_FENCED_CODE | blackfriday.EXTENSION_NO_INTRA_EMPHASIS | blackfriday.EXTENSION_SPACE_HEADERS
2015-08-07 10:18:13 +00:00
output := blackfriday.Markdown(input, renderer, extensions)
2015-08-09 05:18:09 +00:00
file, err := os.Create(args[1])
if err != nil {
2015-08-11 05:56:14 +00:00
log.Fatalf("unable to write to file: %s", args[1])
2015-08-07 10:18:13 +00:00
}
2015-08-09 05:18:09 +00:00
defer file.Close()
2015-08-07 10:18:13 +00:00
2015-08-09 05:18:09 +00:00
if _, err := file.Write(output); err != nil {
2015-08-11 05:56:14 +00:00
log.Fatal("unable to write output")
2015-08-07 10:18:13 +00:00
}
}