ExperimentalHtmlConverter
@RequiresOptIn(message = "The HTML/CSS converter is experimental: its API and output may change, and it covers only the subset of HTML and CSS the spec maps. Review converted output before relying on it in production.", level = RequiresOptIn.Level.WARNING)
@Target(allowedTargets = [AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY] )
Marks the HTML/CSS converter as experimental.
HtmlConverter covers only the subset of HTML and CSS the spec maps, and its API and output may change. Acknowledge that by opting in — either annotate the use site with @OptIn(ExperimentalHtmlConverter::class) or propagate the requirement with @ExperimentalHtmlConverter.