We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94854b7 commit 18a31aaCopy full SHA for 18a31aa
src/Elastic.Markdown/Myst/CodeBlocks/EnhancedCodeBlockHtmlRenderer.cs
@@ -56,7 +56,8 @@ private static int GetCommonIndent(EnhancedCodeBlock block)
56
for (var i = 0; i < block.Lines.Count; i++)
57
{
58
var line = block.Lines.Lines[i].Slice;
59
- if (line.IsEmptyOrWhitespace()) continue;
+ if (line.IsEmptyOrWhitespace())
60
+ continue;
61
var indent = CountIndentation(line);
62
commonIndent = Math.Min(commonIndent, indent);
63
}
0 commit comments