diff options
author | vmishenev <vad-mishenev@yandex.ru> | 2021-11-23 04:26:43 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-23 04:26:43 +0300 |
commit | af81f9db62cdff3baaf8cc81835457940747ebe6 (patch) | |
tree | 4a2913b674cd05c3ec904ec8a5d535809204ad2a /plugins/base/base-test-utils/src/main/kotlin/renderers | |
parent | 7084461ddd4045fc8ed0a798b1351a0577588021 (diff) | |
download | dokka-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.kt | 1 |
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" } |