Do you know if it's possible to write something after the @param and @return blocks. Let's say I want to write a piece of text after the parameters/return declarations, something that is separated from them.
It seems Javadoc and Jsdoc both attach whatever you write after an @param/@return in the same block of conetnts.
Let's say for instance I want documentation to be shown like this:
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.