mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-13 21:42:57 +00:00
Inline elements should have correct Span (not zero-filled) #416
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @KvanTTT on GitHub (Nov 9, 2020).
Consider the following markdown fragment:
The parser returns
ContainerInlinenode with the following children:But all
Spanproperties of these nodes are zero-filled (0-0) though they should not.How can I get the correct position of inline nodes?
@KvanTTT commented on GitHub (Nov 9, 2020):
It works fine if I set
PreciseSourceLocationin the following way:Sorry for the noise.