diff options
Diffstat (limited to 'plugins/gfm/src')
-rw-r--r-- | plugins/gfm/src/main/kotlin/org/jetbrains/dokka/gfm/renderer/CommonmarkRenderer.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gfm/src/main/kotlin/org/jetbrains/dokka/gfm/renderer/CommonmarkRenderer.kt b/plugins/gfm/src/main/kotlin/org/jetbrains/dokka/gfm/renderer/CommonmarkRenderer.kt index 67552946..aa54af97 100644 --- a/plugins/gfm/src/main/kotlin/org/jetbrains/dokka/gfm/renderer/CommonmarkRenderer.kt +++ b/plugins/gfm/src/main/kotlin/org/jetbrains/dokka/gfm/renderer/CommonmarkRenderer.kt @@ -97,7 +97,7 @@ open class CommonmarkRenderer( templateCommand(ResolveLinkGfmCommand(node.address)) { buildText(node.children, pageContext, sourceSetRestriction) } - } else Unit + } else buildText(node.children, pageContext, sourceSetRestriction) } override fun StringBuilder.buildNewLine() { |