diff options
Diffstat (limited to 'plugins/templating/src/main/kotlin/templates/AddToNavigationCommandHandler.kt')
-rw-r--r-- | plugins/templating/src/main/kotlin/templates/AddToNavigationCommandHandler.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/templating/src/main/kotlin/templates/AddToNavigationCommandHandler.kt b/plugins/templating/src/main/kotlin/templates/AddToNavigationCommandHandler.kt index 9531c279..fa58ecba 100644 --- a/plugins/templating/src/main/kotlin/templates/AddToNavigationCommandHandler.kt +++ b/plugins/templating/src/main/kotlin/templates/AddToNavigationCommandHandler.kt @@ -31,7 +31,7 @@ class AddToNavigationCommandHandler(val context: DokkaContext) : CommandHandler val node = Element(Tag.valueOf("div"), "", attributes) navigationFragments.entries.sortedBy { it.key }.forEach { (moduleName, command) -> command.select("a").forEach { a -> - a.attr("href")?.also { a.attr("href", "${moduleName}/${it}") } + a.attr("href").also { a.attr("href", "${moduleName}/${it}") } } command.childNodes().toList().forEachIndexed { index, child -> if (index == 0) { @@ -43,7 +43,7 @@ class AddToNavigationCommandHandler(val context: DokkaContext) : CommandHandler Files.write(output.resolve("navigation.html").toPath(), listOf(node.outerHtml())) node.select("a").forEach { a -> - a.attr("href")?.also { a.attr("href", "../${it}") } + a.attr("href").also { a.attr("href", "../${it}") } } navigationFragments.keys.forEach { Files.write( |