In my Enunciate API documentation report, I need to change the font of some comment text to "Courier New" font type.
Is is possible?
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.
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.