I use HeaderDoc to document my code, and I would like to refer to other methods in the documentation. I am not trying to create HTML (at least for now), but I want it to appear in the right pane of Xcode. The following is the documentation for -applicationDidEnterBackground: how it appears in Xcode. I want to achieve these blue links by referring to other methods that I wrote to myself:

The docs say use @link , but it doesn't work:
Here is what I tried:
Here is the result:

As you can see, this is not displayed correctly. I read here that @link broken, but the comment goes back to 2013. Is there a fix? Am I doing it wrong?
Edit: I tried Santa's suggestion, this is the result:
/** * @abstract Whether the heap is empty. * * @discussion An empty heap contains no objects, in which case this property returns <code>YES</code>. * Returns <code>NO</code> otherwise, which also implies that calls to {@link count} * return zero. */
Refers to:

source share