Reputation: 134
/**
* A test function
* @param p an integer **of your choice**
* @return 0: if zero, 1: if positive, -1: if negative
*/
int Test(int);
I want the documentation hint to be formatted as :
Of your choice
should be bold. 0: if zero, 1: if positive, -1: if negative
should be in 3 linesBut instead, i get :
Upvotes: 2
Views: 1056
Reputation: 56509
Put <b> YOUR TEXT </b>
instead of **
.
/*
* @param p an integer <b>of your choice</b>
* ^^^ ^^^^
*/
For multi line, you can use <br>
or \n
at the end of line. You can also take advantage of other HTML text formatting tags:
<b> - Bold
<strong> - Important
<i> - Italic
<em> - Emphasized
<small> - Small
<sub> - Subscript
<sup> - Superscript
Upvotes: 2