Defining Courier font in Java Documentation comments

1.1k Views Asked by At

In my Enunciate API documentation report, I need to change the font of some comment text to "Courier New" font type.

Is is possible?

2

There are 2 best solutions below

1
On BEST ANSWER

Found a way for this feature - Use Font html tag in the comment, Java doc code reads it as a html tag and displays in courier font.

/* Sample URL - <font face="courier">https://{Hostname}/programs/FireIn</font>, Replace the host name with the respective environment name</br>
*/
2
On

Starting with 1.2, Javadoc supports HTML style sheets. You can make these changes to stylesheet.css (located at the root directory of the Javadoc HTML files).

To choose a smaller, sans-serif fonts for the left-hand frames, change this:

#FrameItemFont { font-size: normal; font-family: normal }

To:

#FrameItemFont { font-size: 10pt; font-family: helvetica arial sans-serif }

Customize this yourself for whatever font you want.