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 at the same URL with .md appended. 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

OutlineEntry Pennington.Pipeline

A single heading entry in a page outline.

Properties

Id string
Anchor id for the heading.
Level int
Heading level (1–6).
Text string
Heading text.

Constructors

OutlineEntry

#
public OutlineEntry(string Id, string Text, int Level)

A single heading entry in a page outline.

Parameters

Id string
Anchor id for the heading.
Text string
Heading text.
Level int
Heading level (1–6).

Pennington.Pipeline.OutlineEntry

namespace Pennington.Pipeline;

/// A single heading entry in a page outline.
public record OutlineEntry
{
    /// Anchor id for the heading.
    
public string Id { get; set; }
/// Heading level (1–6).
public int Level { get; set; }
/// A single heading entry in a page outline.
public OutlineEntry(string Id, string Text, int Level)
; /// Heading text.
public string Text { get; set; }
}