Diffstat (limited to 'internal/frontmatter')
| -rw-r--r-- | internal/frontmatter/parser.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/frontmatter/parser.go b/internal/frontmatter/parser.go index 3c00a7f..83312dc 100644 --- a/internal/frontmatter/parser.go +++ b/internal/frontmatter/parser.go @@ -16,7 +16,8 @@ type Metadata struct { Thumbnail string `yaml:"thumbnail"` Tags []string `yaml:"tags"` Geolocation string `yaml:"geolocation"` - Timezone string `yaml:"timezone"` + Medley string `yaml:"medley"` + MedleyPart int `yaml:"medleyPart"` } func ParseFrontmatter(content []byte) (metadata *Metadata, markdown []byte, err error) { |