2019-11-06 12:27:02 +01:00
|
|
|
package frontmatter
|
|
|
|
|
|
|
|
import (
|
2020-03-11 23:54:46 +01:00
|
|
|
"fmt"
|
2019-11-06 12:27:02 +01:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"gopkg.in/yaml.v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Frontmatter encapsulates cheatsheet frontmatter data
|
|
|
|
type Frontmatter struct {
|
|
|
|
Tags []string
|
|
|
|
Syntax string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse parses cheatsheet frontmatter
|
|
|
|
func Parse(markdown string) (string, Frontmatter, error) {
|
|
|
|
|
|
|
|
// specify the frontmatter delimiter
|
|
|
|
delim := "---"
|
|
|
|
|
|
|
|
// initialize a frontmatter struct
|
|
|
|
var fm Frontmatter
|
|
|
|
|
|
|
|
// if the markdown does not contain frontmatter, pass it through unmodified
|
|
|
|
if !strings.HasPrefix(markdown, delim) {
|
|
|
|
return strings.TrimSpace(markdown), fm, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise, split the frontmatter and cheatsheet text
|
|
|
|
parts := strings.SplitN(markdown, delim, 3)
|
|
|
|
|
2020-03-11 23:54:46 +01:00
|
|
|
// return an error if the frontmatter parses into the wrong number of parts
|
|
|
|
if len(parts) != 3 {
|
|
|
|
return markdown, fm, fmt.Errorf("failed to delimit frontmatter")
|
|
|
|
}
|
|
|
|
|
|
|
|
// return an error if the YAML cannot be unmarshalled
|
|
|
|
if err := yaml.Unmarshal([]byte(parts[1]), &fm); err != nil {
|
|
|
|
return markdown, fm, fmt.Errorf("failed to unmarshal frontmatter: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.TrimSpace(parts[2]), fm, nil
|
2019-11-06 12:27:02 +01:00
|
|
|
}
|