You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The range for a multiline strikethrough is incorrectly detected when parsing a Markdown string using swift-markdown. Specifically, the detected range ends prematurely at the first line of the strikethrough block instead of spanning the entire multiline strikethrough content.
The range for a multiline strikethrough is incorrectly detected when parsing a Markdown string using
swift-markdown
. Specifically, the detected range ends prematurely at the first line of the strikethrough block instead of spanning the entire multiline strikethrough content.Steps to reproduce
Expected Output:
The strikethrough range should correctly span from the start of the first line to the end of the last line, i.e., from
3:1
to6:16
.Actual Output:
The strikethrough range is detected as
3:1
-3:16
, which only covers the first line of the multiline strikethrough block:Environment:
Questions:
Related issues found:
Thank you for your assistance.
The text was updated successfully, but these errors were encountered: