headerdoc - Using @link with Xcode 6 -


i'm using headerdoc document code , link other methods in documentation. i'm not trying generate html (at least now) want appear in xcode's right panel. following documentation -applicationdidenterbackground: appears in xcode. want achieve blue links referencing other methods wrote myself:

enter image description here

the docs use @link, doesn't seem work:

here's tried:

/**  *  @abstract   returns array copy of elements in heap in sorted order.  *  *  @discussion original heap remains unchanged. getter uses heap sort takes o(n log n),  *              although copies heap first (in linear time). if losing elements on heap  *              acceptable should use @link -removeallobjectswitharray: @/link instead, faster.  */ 

here's result:

enter image description here

as can see it's not rendering properly. read here @link broken, comment dates 2013. there fix? doing wrong?

edit: tried santa's suggestion, result:

/**  *  @abstract   whether heap empty.  *  *  @discussion empty heap contains no objects, in case property returns <code>yes</code>.  *              returns <code>no</code> otherwise, implies calls {@link count}  *              return zero.  */ 

renders as:

enter image description here


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -