This documentation is also published as Markdown for efficient machine reading: the whole site is indexed at /llms.txt, and every page has a clean Markdown copy under /_llms/. These are generated from the same source and cost far fewer tokens to read than this rendered HTML.

Skip to main content Skip to navigation

ISectionable Pennington.FrontMatter

Content that carries a section label. The label surfaces on breadcrumbs and prev/next navigation; it does NOT drive sidebar grouping (the subfolder under an area drives grouping — see NavigationBuilder).

Properties

SectionLabel string
Section label for this page, used in breadcrumbs and prev/next navigation.

Pennington.FrontMatter.ISectionable

namespace Pennington.FrontMatter;

/// Content that carries a section label. The label surfaces on breadcrumbs and prev/next navigation; it does NOT drive sidebar grouping (the subfolder under an area drives grouping — see NavigationBuilder).
public interface ISectionable
{
    /// Section label for this page, used in breadcrumbs and prev/next navigation.
    
public string SectionLabel { get; }
}