Reputation: 7098
In working on a VSCode extension that runs an analysis on solidity code and creates a markdown report for that I came across this the report contains source code filenames, and a range of text.
How can I have that link to places in the source code?
Upvotes: 2
Views: 1582
Reputation: 182101
It looks like this was just fixed: Linking to file with line number from markdown only works for .md files .
So now this works:
[b.ts](b.ts#L60)
Upvotes: 2