rocky
rocky

Reputation: 7098

How can I link from a markdown document in VSCode into another file in an editor

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

Answers (1)

Mark
Mark

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

Related Questions