adding a front matter format to lead rune method

This commit is contained in:
spf13 2014-05-02 01:01:44 -04:00
parent fb7d45e613
commit 6d9a2d2497

View file

@ -17,6 +17,7 @@ import (
"bytes"
"encoding/json"
"fmt"
"strings"
"github.com/BurntSushi/toml"
"launchpad.net/goyaml"
@ -86,6 +87,20 @@ func InterfaceToFrontMatter(in interface{}, mark rune) ([]byte, error) {
}
}
func FormatToLeadRune(kind string) rune {
switch strings.ToLower(kind) {
case "yaml":
return rune([]byte(YAML_LEAD)[0])
case "toml":
return rune([]byte(TOML_LEAD)[0])
case "json":
return rune([]byte(JSON_LEAD)[0])
default:
return rune([]byte(TOML_LEAD)[0])
}
}
func DetectFrontMatter(mark rune) (f *FrontmatterType) {
switch mark {
case '-':