mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Span not set for EmphasisInline and LinkInline #11
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 @madskristensen on GitHub (Jun 18, 2016).
The
Spanproperty always return a0,0span for EmphasisInline and LinkInline.This might be the same for other inline objects, but I've only tested for these two types
@xoofx commented on GitHub (Jun 18, 2016):
You need to configure the pipeline with option
pipelineBuilder.UsePreciseSourceLocation().Build()See for example the tests@madskristensen commented on GitHub (Jun 18, 2016):
Awesome. That worked!!