-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
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
Class references not working in method doc strings #3758
Comments
Can you show more complete examples? In general, doc comment references (in square brackets) do result in links. There should not be any difference between a getter and a function. |
Great writeup @TheFriendlyCoder ! This was kind of a spooky bug, I thought surely it couldn't be that just returning a |
I've been testing
dartdoc
in a small project I've been working on, and found some odd behaviour with regards to hyperlinks to classes within the same project not working properly ... but only within method doc strings. Property doc strings don't seem to be affected. Below is a sample snippet to show what I mean:In this example, the first Doctoring will generate a hyperlink to the
MyObject
class (ie: from the[MyObject]
reference) but the exact same syntax in the second Doctoring will generate text that looks like inline code, similar toMyObject
in markdown.The text was updated successfully, but these errors were encountered: