const (
// FormatHTML emits an HTML document for the diff. FormatHTML Format = "html"
// FormatMarkdown emits a Markdown diff code block. FormatMarkdown Format = "markdown"
// FormatANSI emits an ANSI-colored string. FormatANSI Format = "ansi"
)
type Options struct {
// Title will be shown in HTML/Markdown outputs when provided. Title string// ShowLineNumbers determines whether line numbers are included. ShowLineNumbers bool
}