We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It looks like the returned data-sourcepos for setext headings are off by one line.
data-sourcepos
header --- this
gives
<h2 data-sourcepos="1:1-3:4">header</h2> <p data-sourcepos="3:1-3:4">this</p>
I think it should be
<h2 data-sourcepos="1:1-2:3">header</h2> <p data-sourcepos="3:1-3:4">this</p>
I'll try to spin up a PR in a couple days.
The text was updated successfully, but these errors were encountered:
Wrong indeed; thanks so much!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
It looks like the returned
data-sourcepos
for setext headings are off by one line.gives
I think it should be
I'll try to spin up a PR in a couple days.
The text was updated successfully, but these errors were encountered: