From a816e917995858129ad074409f73e99d3b100318 Mon Sep 17 00:00:00 2001 From: Vadim Mishenev Date: Mon, 26 Sep 2022 16:33:24 +0300 Subject: Trim four spaces inside indented code block (#2661) * Trim four spaces inside indented code block * Fix test --- plugins/base/src/test/kotlin/markdown/ParserTest.kt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins/base/src/test/kotlin/markdown') diff --git a/plugins/base/src/test/kotlin/markdown/ParserTest.kt b/plugins/base/src/test/kotlin/markdown/ParserTest.kt index 8e813eba..fd723263 100644 --- a/plugins/base/src/test/kotlin/markdown/ParserTest.kt +++ b/plugins/base/src/test/kotlin/markdown/ParserTest.kt @@ -1340,11 +1340,11 @@ class ParserTest : KDocTest() { CodeBlock( listOf( Text( - " val x = 1\n" + - " val y = 2\n" + - " if (x == 1) {\n" + - " println(y)\n" + - " }" + "val x = 1\n" + + "val y = 2\n" + + "if (x == 1) {\n" + + " println(y)\n" + + "}" ) ) ) -- cgit