jlelse
/
hugo-micropub
Archived
1
Fork 0
This repository has been archived on 2020-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
hugo-micropub/microformat.go

23 lines
860 B
Go
Raw Normal View History

package main
type MicroformatItem struct {
Type []string `json:"type"`
Properties *MicroformatProperties `json:"properties"`
}
type MicroformatProperties struct {
2019-12-22 12:58:50 +00:00
Name []string `json:"name,omitempty"`
Published []string `json:"published,omitempty"`
Updated []string `json:"updated,omitempty"`
Category []string `json:"category,omitempty"`
Content []string `json:"content,omitempty"`
Url []string `json:"url,omitempty"`
InReplyTo []string `json:"in-reply-to,omitempty"`
LikeOf []string `json:"like-of,omitempty"`
2020-01-01 19:39:16 +00:00
BookmarkOf []string `json:"bookmark-of,omitempty"`
2019-12-22 12:58:50 +00:00
MpSlug []string `json:"mp-slug,omitempty"`
MpSyndicateTo []string `json:"mp-syndicate-to,omitempty"`
2020-01-19 07:36:10 +00:00
Photo []string `json:"photo,omitempty"`
Audio []string `json:"audio,omitempty"`
}