aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/base-test-utils/src/main/kotlin/renderers
diff options
context:
space:
mode:
authorvmishenev <vad-mishenev@yandex.ru>2021-11-23 04:26:43 +0300
committerGitHub <noreply@github.com>2021-11-23 04:26:43 +0300
commitaf81f9db62cdff3baaf8cc81835457940747ebe6 (patch)
tree4a2913b674cd05c3ec904ec8a5d535809204ad2a /plugins/base/base-test-utils/src/main/kotlin/renderers
parent7084461ddd4045fc8ed0a798b1351a0577588021 (diff)
downloaddokka-af81f9db62cdff3baaf8cc81835457940747ebe6.tar.gz
dokka-af81f9db62cdff3baaf8cc81835457940747ebe6.tar.bz2
dokka-af81f9db62cdff3baaf8cc81835457940747ebe6.zip
Add space between funs descriptions (#2235)
Diffstat (limited to 'plugins/base/base-test-utils/src/main/kotlin/renderers')
-rw-r--r--plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt b/plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt
index 9e38df10..47c9608a 100644
--- a/plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt
+++ b/plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt
@@ -30,6 +30,7 @@ class B(vararg matchers: Any) : Tag("b", *matchers)
class I(vararg matchers: Any) : Tag("i", *matchers)
class STRIKE(vararg matchers: Any) : Tag("strike", *matchers)
object Wbr : Tag("wbr")
+object Br : Tag("br")
private fun Any.accepts(n: Node, ignoreSpan:Boolean = true) {
when (this) {
is String -> assert(n is TextNode && n.text().trim() == this.trim()) { "\"$this\" expected but found: $n" }