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
I'd love if the MarkdownParagraph and MarkdownSpan types contained information about which span in the original .md source file they refer to.
(Scenario: I use FSharp.Formatting to parse markdown, then I process it, and if there was anything wrong then I'd like to report which line number it was wrong at.)
The text was updated successfully, but these errors were encountered:
Basically, I render an FSharp.MarkdownParagraph into a series of words (a rough alphanumeric-only representation of what the original markdown might have looked like). And I convert the original markdown source code into a series of words with known text spans. And I use a fuzzy word-matching algorithm to figure out where the MarkdownParagraph likely matches up.
I'd love if the
MarkdownParagraph
andMarkdownSpan
types contained information about which span in the original .md source file they refer to.(Scenario: I use FSharp.Formatting to parse markdown, then I process it, and if there was anything wrong then I'd like to report which line number it was wrong at.)
The text was updated successfully, but these errors were encountered: