plsqldoc using -

NiklasE

Member
I have a problem when I'm documenting my code. I want to use #raises and pass in the error code (e.g -20600), but when displaying the document the "-" and the error code are separated, on different lines. It looks like "-" causes a linefeed. Any workarounds for this?

Code:
||#raises -20600 Error Message

Result:
-
20600 Error Message

Thanks,
Niklas
 
This is an unfortunate HTML behavior. It treats the minus as a word separator, and wraps the text at this point. I don't immediately have a work around.
 
Back
Top