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

MarkdownFile Pennington.LlmsTxt

A stripped markdown file produced for the llms output.

Properties

Content byte[]
UTF-8 bytes of the stripped markdown body.
OutputPath FilePath
Relative output path for the markdown file.

Constructors

MarkdownFile

#
public MarkdownFile(FilePath OutputPath, byte[] Content)

A stripped markdown file produced for the llms output.

Parameters

OutputPath FilePath
Relative output path for the markdown file.
Content byte[]
UTF-8 bytes of the stripped markdown body.

Pennington.LlmsTxt.MarkdownFile

namespace Pennington.LlmsTxt;

/// A stripped markdown file produced for the llms output.
public record MarkdownFile
{
    /// UTF-8 bytes of the stripped markdown body.
    
public byte[] Content { get; set; }
/// A stripped markdown file produced for the llms output.
public MarkdownFile(FilePath OutputPath, byte[] Content)
; /// Relative output path for the markdown file.
public FilePath OutputPath { get; set; }
}