Знаете ли вы, можно ли что-то написать после блоков @param и @return.Допустим, я хочу написать фрагмент текста после объявлений параметров / возврата, что-то, что отделено от них.
Кажется, Javadoc и Jsdoc оба прикрепляют все, что вы пишете после @param/ @ вернуть в том же блоке conetnts.
Скажем, например, я хочу, чтобы документация отображалась так:
function showUpperCaseString(string_to_show)
This function shows the input string in upper case and blah, blah, ...
Parameters:
{string} string_to_show
Returns:
{boolean} true if everything was ok, or false on failure
It's important to notice that I would like to show this text NOT in the
return contents. But the Javadoc, Jsdoc always attach everything to the last
@param/@return block. Even if I use nexline <br> or <p> it goes new line but
still indented as if it was part of the last return block.