adding a front matter format to lead rune method
authorspf13 <steve.francia@gmail.com>
Fri, 2 May 2014 05:01:44 +0000 (01:01 -0400)
committerspf13 <steve.francia@gmail.com>
Fri, 2 May 2014 05:01:44 +0000 (01:01 -0400)
parser/frontmatter.go

index 6ace0031d02c32124f09911c7437af60d8d7231a..374fe020ba7102b41475fda01376229bf78d78fa 100644 (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 '-':