html

abstract fun html(config: Action<KoverHtmlTaskConfig>)(source)

Configure HTML report for current report variant.

html {
    title = "Custom title"

    // Generate an HTML report when running the `check` task
    onCheck = false

    // Specify HTML report directory
    htmlDir = layout.buildDirectory.dir("my-html-report")
}

Instance to configuring of HTML report for current report variant.

See details in html.