mirror of
https://github.com/gohugoio/hugo.git
synced 2024-05-11 05:54:58 +00:00
adding a front matter format to lead rune method
This commit is contained in:
@ -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 '-':
|
||||
|
Reference in New Issue
Block a user