filebrowser/frontmatter/runes.go
Henrique Dias d9d6a2bf44 solve #68
Former-commit-id: b701d9f094
2017-01-04 18:17:47 +00:00

25 lines
632 B
Go

package frontmatter
import "strings"
// HasRune checks if the file has the frontmatter rune
func HasRune(file []byte) bool {
return strings.HasPrefix(string(file), "---") ||
strings.HasPrefix(string(file), "+++") ||
strings.HasPrefix(string(file), "{")
}
// AppendRune appends the frontmatter rune to a file
func AppendRune(frontmatter []byte, language string) []byte {
switch language {
case "yaml":
return []byte("---\n" + string(frontmatter) + "\n---")
case "toml":
return []byte("+++\n" + string(frontmatter) + "\n+++")
case "json":
return []byte("{\n" + string(frontmatter) + "\n}")
}
return frontmatter
}