@selectedDoc.Title
@{ var desc = GetDescription(selectedDoc); } @if (desc != null) {@desc
}
@((MarkupString)FormatContent(selectedDoc.Content))
}
@if (HasExtraFrontmatter(selectedDoc))
{
Details
@foreach (var kvp in selectedDoc.Frontmatter.Where(kvp => kvp.Key != "category" && kvp.Key != "description"))
{
@kvp.Key
@kvp.Value
}