md2vim/md2vim.go

89 lines
2.8 KiB
Go
Raw Normal View History

2015-08-07 10:18:13 +00:00
/*
* Copyright (c) 2015 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.net>
*
* 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.
*/
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]))
2015-08-09 06:44:10 +00:00
fmt.Fprintf(os.Stderr, "http://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
}
}