MarkdownFile Pennington.LlmsTxt
A stripped markdown file produced for the llms output.
Properties
Contentbyte[]- UTF-8 bytes of the stripped markdown body.
OutputPathFilePath- 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
OutputPathFilePath- Relative output path for the markdown file.
Contentbyte[]- 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; }
}