angular / dgeni-packages

A collection of dgeni packages for generating documentation from source code.
MIT License
142 stars 106 forks source link

Link tag not linking methods #285

Closed inakijaneiro closed 4 years ago

inakijaneiro commented 4 years ago

When using the link tag to link a method with the following syntax, a dangling link occurs.

{@link MyClass.method}

This creates an absolute link which may not exist

I found a workaround using the following syntax

{@link MyClass#method `MyClass.method`} 

This generates the correct relative link, and renders the link as MyClass.method. Is this the expected behaviour?

petebacondarwin commented 4 years ago

Yes this is working as designed. Your solution is the correct approach.