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

Skip to main content Skip to navigation

ParsedItem Pennington.Pipeline

A content item whose front matter and raw markdown body have been parsed.

Properties

Metadata Pennington.FrontMatter.IFrontMatter
Parsed front matter metadata.
RawMarkdown string
Markdown body text, with front matter stripped.
Route Pennington.Routing.ContentRoute
Canonical route for the item.

Constructors

.ctor

#
public record ParsedItem(ContentRoute Route, IFrontMatter Metadata, string RawMarkdown);

A content item whose front matter and raw markdown body have been parsed.

Parameters

Route ContentRoute
Canonical route for the item.
Metadata IFrontMatter
Parsed front matter metadata.
RawMarkdown string
Markdown body text, with front matter stripped.

Pennington.Pipeline.ParsedItem

namespace Pennington.Pipeline;

/// A content item whose front matter and raw markdown body have been parsed.
public record ParsedItem
{
    /// A content item whose front matter and raw markdown body have been parsed.
    
public record ParsedItem(ContentRoute Route, IFrontMatter Metadata, string RawMarkdown);
/// Parsed front matter metadata.
IFrontMatter Metadata
; /// Markdown body text, with front matter stripped.
string RawMarkdown
; /// Canonical route for the item.
ContentRoute Route
; }