@using Statiq.CodeAnalysis @using Docs.Extensions @{ IReadOnlyList attributes = Document.GetDocumentList(CodeAnalysisKeys.Attributes); if (attributes?.Count > 0) {

Attributes

@foreach (var attribute in attributes) { var type = attribute.GetDocument(CodeAnalysisKeys.Type);
@Context.GetTypeLink(type)
@Html.Raw(type.GetString(CodeAnalysisKeys.Summary))
}
} }