Skip to content

Commit

Permalink
Bump kotlinx html to 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcinAman committed Apr 2, 2021
1 parent f9ac100 commit 6de4d96
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ allprojects {
mavenCentral()
maven(url = "https://dl.bintray.com/kotlin/kotlin-eap")
maven(url = "https://dl.bintray.com/kotlin/kotlin-dev")
maven("https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven") {
content {
includeGroup("org.jetbrains.kotlinx")
}
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dokka_integration_test_parallelism=2
# Versions
kotlin_version=1.4.30
coroutines_version=1.4.1
kotlinx_html_version=0.7.2
kotlinx_html_version=0.7.3
kotlin_plugin_version=202-1.4.30-release-IJ8194.7
idea_version=202.7660.26
language_version=1.4
Expand Down
2 changes: 1 addition & 1 deletion plugins/base/src/main/kotlin/renderers/html/Tags.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ open class WBR(initialAttributes: Map<String, String>, consumer: TagConsumer<*>)
HTMLTag("wbr", consumer, initialAttributes, namespace = null, inlineTag = true, emptyTag = false),
HtmlBlockInlineTag

fun FlowOrPhrasingOrMetaDataContent.templateCommand(data: Command, block: TemplateBlock = {}): Unit =
fun FlowOrMetaDataContent.templateCommand(data: Command, block: TemplateBlock = {}): Unit =
(consumer as? ImmediateResolutionTagConsumer)?.processCommand(data, block)
?: TemplateCommand(attributesMapOf("data", toJsonString(data)), consumer).visit(block)

Expand Down

0 comments on commit 6de4d96

Please sign in to comment.