Skip to content

Commit 18a31aa

Browse files
committed
Format
1 parent 94854b7 commit 18a31aa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Elastic.Markdown/Myst/CodeBlocks/EnhancedCodeBlockHtmlRenderer.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ private static int GetCommonIndent(EnhancedCodeBlock block)
5656
for (var i = 0; i < block.Lines.Count; i++)
5757
{
5858
var line = block.Lines.Lines[i].Slice;
59-
if (line.IsEmptyOrWhitespace()) continue;
59+
if (line.IsEmptyOrWhitespace())
60+
continue;
6061
var indent = CountIndentation(line);
6162
commonIndent = Math.Min(commonIndent, indent);
6263
}

0 commit comments

Comments
 (0)