Hi,
It seems like using the
tag. Each line are broken with the br tag
in the resulting HTML page. Also, there is non braking spaces on
the begining of each lines for the next paragraph.
Some sentence containing a code tag on the next line
as
.
*/
/** Comment for v_test */
v_test char(1);
end test2;
/
Thank you for your help
It seems like using the
Code:
tag in a comment do something more than just using the courrier font. It also affects the formatting of the entire paragraph in which it is used.
If you try the two following examples, you'll see the difference.
create or replace package test1 is
/** Comment paragraph without the code tag. It as many lines that will not be broken
in the resulting HTML page. Also, there will not be any non braking spaces on
the begining of each lines.
*/
/** Comment for v_test */
v_test char(1);
end test1;
/
create or replace package test2 is
/** Comment paragraph with a <code>code
in the resulting HTML page. Also, there is non braking spaces on
the begining of each lines for the next paragraph.
Some sentence containing a code tag on the next line
as
Code:
path="/logon"
*/
/** Comment for v_test */
v_test char(1);
end test2;
/
Thank you for your help