Property VlmStripStyleAttributes
- Namespace
- LMKit.Document.Conversion
- Assembly
- LM-Kit.NET.dll
VlmStripStyleAttributes
Gets or sets a value indicating whether inline HTML style="..."
attributes should be stripped from the VLM output. Defaults to true,
which produces cleaner Markdown suited to LLM ingestion.
public bool VlmStripStyleAttributes { get; set; }
Property Value
Examples
// Preserve inline styles when rendering the Markdown to HTML later.
var options = new DocumentToMarkdownOptions { VlmStripStyleAttributes = false };