Internal links in documentation
See original GitHub issueIs there any way of declaring an internal reference to a part of the documentation via a comment block.
e.g.
/**
* Some function that does something. Also see {@link someOtherFunction}.
*/
public someFunction(): void {
...
}
Issue Analytics
- State:
- Created 9 years ago
- Comments:10 (8 by maintainers)
Top Results From Across the Web
Add hyperlinks to a location within the same document
Select the text or object you want to use as a hyperlink. Right-click and then click Hyperlink Hyperlink button . Under Link to,...
Read more >Google Docs: Linking Within a Document - GCF Global
Learn how to link within your document using headings and bookmarks in this free lesson. ... Links usually take you outside of Google...
Read more >Internal Links - DocSend Help Center
Create an Internal Link · Select the desired document from the Content page. · Click the Create Link arrow to open the “more...
Read more >Internal Links (The Org Manual)
4.2 Internal Links. A link that does not look like a URL—i.e., does not start with a known scheme or a file name—refers...
Read more >How to Create an Internal Document Link in Microsoft Word
Just as a website needs an address before you can link to it, a Microsoft Word document needs internal addresses before you can...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
How would I declare a reference to a static and a instance member? I’ve tried
[[Class:method]]
[[Class::method]]
[[Class#method]]
. If there’s a static and instance method with the same name,[[Class.method]]
creates a link to the static method.It is working for same class members and to link to another class.
How to link to another class’ member?