diff options
Diffstat (limited to 'internal/ap/activitystreams.go')
-rw-r--r-- | internal/ap/activitystreams.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/ap/activitystreams.go b/internal/ap/activitystreams.go index a434a6a07..e8a362800 100644 --- a/internal/ap/activitystreams.go +++ b/internal/ap/activitystreams.go @@ -69,4 +69,11 @@ const ( ObjectCollection = "Collection" // ActivityStreamsCollection https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collection ObjectCollectionPage = "CollectionPage" // ActivityStreamsCollectionPage https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collectionpage ObjectOrderedCollection = "OrderedCollection" // ActivityStreamsOrderedCollection https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollection + + // Hashtag is not in the AS spec per se, but it tends to get used + // as though 'Hashtag' is a named type under the Tag property. + // + // See https://www.w3.org/TR/activitystreams-vocabulary/#microsyntaxes + // and https://www.w3.org/TR/activitystreams-vocabulary/#dfn-tag + TagHashtag = "Hashtag" ) |