Skip to content

Commit 983187e

Browse files
committed
Fix emphasis when EnableTrackTrivia() is used (#561)
1 parent 94581d9 commit 983187e

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/Markdig/Parsers/Inlines/EmphasisInlineParser.cs

+10-9
Original file line numberDiff line numberDiff line change
@@ -103,25 +103,26 @@ public bool PostProcess(InlineProcessor state, Inline? root, Inline? lastChild,
103103
delimiters.Add(emphasisDelimiter);
104104
}
105105

106-
// Move current_position forward in the delimiter stack (if needed) until
107-
// we find the first potential closer with delimiter * or _. (This will be the potential closer closest to the beginning of the input – the first one in parse order.)
108-
var child = container.LastChild;
106+
// Collect all EmphasisDelimiterInline by searching from the root container
107+
var child = container.FirstChild;
109108
while (child != null)
110109
{
110+
// Stop the search on the delimitation child
111111
if (child == lastChild)
112112
{
113113
break;
114114
}
115+
116+
// If we have a delimiter, we search into it as we should have a tree of EmphasisDelimiterInline
115117
if (child is EmphasisDelimiterInline delimiter)
116118
{
117-
if (delimiters is null)
118-
{
119-
delimiters = inlinesCache.Get();
120-
}
119+
delimiters ??= inlinesCache.Get();
121120
delimiters.Add(delimiter);
121+
child = delimiter.FirstChild;
122+
continue;
122123
}
123-
var subContainer = child as ContainerInline;
124-
child = subContainer?.LastChild;
124+
125+
child = child.NextSibling;
125126
}
126127

127128
if (delimiters != null)

0 commit comments

Comments
 (0)