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 2e1d741 commit aab5543Copy full SHA for aab5543
src/Markdig/Parsers/BlockProcessor.cs
@@ -485,15 +485,11 @@ public void Discard(Block block)
485
/// Processes a new line.
486
/// </summary>
487
/// <param name="newLine">The new line.</param>
488
- /// <param name="column">The offset.</param>
489
- public void ProcessLine(StringSlice newLine, int column = 0)
+ public void ProcessLine(StringSlice newLine)
490
{
491
CurrentLineStartPosition = newLine.Start;
492
493
- if (column == 0)
494
- {
495
- Document.LineStartIndexes?.Add(CurrentLineStartPosition);
496
- }
+ Document.LineStartIndexes?.Add(CurrentLineStartPosition);
497
498
ContinueProcessingLine = true;
499
0 commit comments