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
Formatstring- Markdown dispatch key (see
MarkdownFormat) of the source that produced this file, selecting the parser for its front-matter type. PathFilePath- 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
PathFilePath- Absolute path to the markdown file.
Formatstring- 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; }
}