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