This site provides a machine-readable index at /llms.txt.

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
Default: 0
Heading level (1–6).
Text string
Heading text.

Constructors

.ctor

#
public record 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
{
    /// A single heading entry in a page outline.
    
public record OutlineEntry(string Id, string Text, int Level);
/// Anchor id for the heading.
string Id
; /// Heading level (1–6).
int Level
; /// Heading text.
string Text
; }