Skip to content

Commit

Permalink
Temporary workaroind for Kotlin/dokka#1523
Browse files Browse the repository at this point in the history
  • Loading branch information
msink committed Oct 13, 2020
1 parent f9b171e commit 84dac23
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/dokka-mygfm/src/main/kotlin/GfmPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,10 @@ open class CommonmarkRenderer(
append("|---".repeat(size))
if (size > 0) append("|\n")

node.children.forEach {
node.children.filterNot {
val dri = it.dci.dri.first()
dri.packageName == "kotlin" && dri.classNames == "Any"
}.forEach {
val builder = StringBuilder()
it.children.forEach {
builder.append("| ")
Expand Down

0 comments on commit 84dac23

Please sign in to comment.