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

RenderedItem Pennington.Pipeline

A content item whose body has been rendered to HTML.

Properties

Content RenderedContent
Rendered content and extracted page data.
Metadata IFrontMatter
Parsed front matter metadata.
Route ContentRoute
Canonical route for the item.

Constructors

RenderedItem

#
public RenderedItem(ContentRoute Route, IFrontMatter Metadata, RenderedContent Content)

A content item whose body has been rendered to HTML.

Parameters

Route ContentRoute
Canonical route for the item.
Metadata IFrontMatter
Parsed front matter metadata.
Content RenderedContent
Rendered content and extracted page data.

Pennington.Pipeline.RenderedItem

namespace Pennington.Pipeline;

/// A content item whose body has been rendered to HTML.
public record RenderedItem
{
    /// Rendered content and extracted page data.
    
public RenderedContent Content { get; set; }
/// Parsed front matter metadata.
public IFrontMatter Metadata { get; set; }
/// A content item whose body has been rendered to HTML.
public RenderedItem(ContentRoute Route, IFrontMatter Metadata, RenderedContent Content)
; /// Canonical route for the item.
public ContentRoute Route { get; set; }
}