I'm writing a phpDocumentor mini-tutorial for a lightning talk, and I'm using, of course, phpdoc to generate examples. When it comes to information on how to use inline @link tags though, I haven't found a way that works, yet. I've tried both the html entity for @ (@) and escaping with a backslash among other things, but to no avail. Does anyone know the magic syntax to escape @link?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

Use an extra closing brace immediately following the @ character... from the manual [1]:

If I want to use the characters "{@link" in a docblock, I just use "{@}link."

[1] -- http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_inlinetags.pkg.html

link|improve this answer
Thanks kindly! That's just what I needed. – markh Mar 26 '11 at 5:14
feedback

Have you tried wrapping in brackets?

{@link http://foo.bar}

link|improve this answer
Nice avatar. lol – Mr.Wizard Mar 25 '11 at 12:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.