Describe the bug
In a single module project, with dokkaHtml configured
Deprecated constructors are not struck through on the class doc page (or the constructor page).
Expected behaviour
Deprecated constructors are struck through
Screenshots
To Reproduce
deprecate a constructor for a class
run ./gradlew :yourModule:dokkaHtml
Dokka configuration
Configuration of dokka used to reproduce the bug
dokkaHtml {
pluginConfiguration<org.jetbrains.dokka.versioning.VersioningPlugin, org.jetbrains.dokka.versioning.VersioningConfiguration> {
version = buildVer
}
// separate inherited members in our public API
pluginConfiguration<org.jetbrains.dokka.base.DokkaBase, org.jetbrains.dokka.base.DokkaBaseConfiguration> {
separateInheritedMembers = true
}
dependsOn(generateKotlinCode)
// fix implicit dependency on jni generation. This prevents gradle from generating the interop when the
// dokkaHtml is run by itself.
mustRunAfter(generateInteropCode)
finalizedBy(named("replaceApiRefName"))
// localization?
moduleName.set("arcgis-maps-kotlin")
dokkaSourceSets {
configureEach {
perPackageOption {
matchingRegex.set(".*internal.*")
suppress.set(true)
}
perPackageOption {
matchingRegex.set("android\\.view\\.View")
suppress.set(true)
}
}
}
}
Installation
Operating system: reproduced on macOS/Linux
Build tool: Gradle 8.9
Dokka version: 1.9.20
Additional context
Add any other context about the problem here
Describe the bug In a single module project, with
dokkaHtml
configured Deprecated constructors are not struck through on the class doc page (or the constructor page).Expected behaviour
Deprecated constructors are struck through
Screenshots
To Reproduce deprecate a constructor for a class run
./gradlew :yourModule:dokkaHtml
Dokka configuration Configuration of dokka used to reproduce the bug
Installation
Additional context Add any other context about the problem here