diff options
| author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-02-17 17:40:32 +0300 |
|---|---|---|
| committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-02-17 17:40:32 +0300 |
| commit | 2ceff9c41cff42b7fb3ffe75ea36a7c570f3615b (patch) | |
| tree | 4d0f1d9624b02e58f2d608674d3a466f2e1a3c58 /core/src/main/kotlin/Formats | |
| parent | 994a86700210fe5f26a8bc131815bde2f6269ac5 (diff) | |
| download | dokka-2ceff9c41cff42b7fb3ffe75ea36a7c570f3615b.tar.gz dokka-2ceff9c41cff42b7fb3ffe75ea36a7c570f3615b.tar.bz2 dokka-2ceff9c41cff42b7fb3ffe75ea36a7c570f3615b.zip | |
Fix for GH-136 GH-137 Blank lines inside code blocks are not preserved
Diffstat (limited to 'core/src/main/kotlin/Formats')
| -rw-r--r-- | core/src/main/kotlin/Formats/StructuredFormatService.kt | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/core/src/main/kotlin/Formats/StructuredFormatService.kt b/core/src/main/kotlin/Formats/StructuredFormatService.kt index 7896bcd8..0e2085c9 100644 --- a/core/src/main/kotlin/Formats/StructuredFormatService.kt +++ b/core/src/main/kotlin/Formats/StructuredFormatService.kt @@ -144,12 +144,9 @@ abstract class StructuredOutputBuilder(val to: StringBuilder, is ContentBlockSampleCode, is ContentBlockCode -> { content as ContentBlockCode fun ContentBlockCode.appendBlockCodeContent() { - for ((index, contentNode) in this.children.withIndex()) { - appendContent(contentNode) - if (index < this.children.size - 1) { - to.append("\n") - } - } + children + .dropWhile { it is ContentText && it.text.isBlank() } + .forEach { appendContent(it) } } when (content) { is ContentBlockSampleCode -> |
