Files
fil/docs/snippets/csharp/config/html_output.md
Henrik Jess Nielsen b4c07d3693
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s
Nomad changes
2026-06-01 23:40:55 +02:00

368 B

using Kreuzberg;

var config = new ExtractionConfig
{
    OutputFormat = OutputFormat.Html,
    HtmlOutput = new HtmlOutputConfig
    {
        Theme = HtmlTheme.GitHub,
        EmbedCss = true,
        ClassPrefix = "kb-"
    }
};

var result = await KreuzbergLib.ExtractFile("document.pdf", null, config);
Console.WriteLine(result.Content);