GoAT Site is library that implements Standard.site in Go.
atprotocol standard-site atproto library
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs(verif): explain why not closing link in document

+2
+2
document.go
··· 139 139 140 140 // GetDocumentVerificationTag returns the HTML link tag checked during the verification of the [Document]. 141 141 func GetDocumentVerificationTag(repo syntax.AtIdentifier, rkey syntax.RecordKey) template.HTML { 142 + // We don't use /> to end the tag, because it is only valid for HTML5 and only required for XHTML. 143 + // See https://blog.novalistic.com/archives/2017/08/optional-end-tags-in-html/ 142 144 return template.HTML( 143 145 fmt.Sprintf(`<link rel="%s" href="%s">`, CollectionDocument, createAtURI(repo, CollectionDocument, rkey)), 144 146 )