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

LlmsOnlySource Pennington.Pipeline

A markdown file that contributes only to the llms.txt index and its sidecar markdown — no HTML page is emitted, and the route is excluded from navigation, sitemap, RSS, and the search index. Conventionally produced by MarkdownContentService when it sees a *.llms.md file: the discovered route uses the slug with the .llms suffix stripped, and downstream stages key off the source type to skip HTML.

Properties

Format string
Markdown dispatch key (see MarkdownFormat) of the source that produced this file, selecting the parser for its front-matter type.
Path FilePath
Absolute path to the markdown file.

Constructors

LlmsOnlySource

#
public LlmsOnlySource(FilePath Path, string Format)

A markdown file that contributes only to the llms.txt index and its sidecar markdown — no HTML page is emitted, and the route is excluded from navigation, sitemap, RSS, and the search index. Conventionally produced by MarkdownContentService when it sees a *.llms.md file: the discovered route uses the slug with the .llms suffix stripped, and downstream stages key off the source type to skip HTML.

Parameters

Path FilePath
Absolute path to the markdown file.
Format string
Markdown dispatch key (see MarkdownFormat) of the source that produced this file, selecting the parser for its front-matter type.

Pennington.Pipeline.LlmsOnlySource

namespace Pennington.Pipeline;

/// A markdown file that contributes only to the llms.txt index and its sidecar markdown — no HTML page is emitted, and the route is excluded from navigation, sitemap, RSS, and the search index. Conventionally produced by MarkdownContentService when it sees a *.llms.md file: the discovered route uses the slug with the .llms suffix stripped, and downstream stages key off the source type to skip HTML.
public record LlmsOnlySource
{
    /// Markdown dispatch key (see MarkdownFormat) of the source that produced this file, selecting the parser for its front-matter type.
    
public string Format { get; set; }
/// A markdown file that contributes only to the llms.txt index and its sidecar markdown — no HTML page is emitted, and the route is excluded from navigation, sitemap, RSS, and the search index. Conventionally produced by MarkdownContentService when it sees a *.llms.md file: the discovered route uses the slug with the .llms suffix stripped, and downstream stages key off the source type to skip HTML.
public LlmsOnlySource(FilePath Path, string Format)
; /// Absolute path to the markdown file.
public FilePath Path { get; set; }
}