Clean up the application of style to verbatim text.

This moves styling to the stylesheet; the use of <dl> structures to control
style sometimes produced improper indentation of subsequent text in many
browsers when the text was already part of the <dl> structure (as in a
function or class description).
This commit is contained in:
Fred Drake 2002-04-15 18:41:31 +00:00
parent eeb5ec42e0
commit 8a5e6790d9
3 changed files with 10 additions and 8 deletions

View file

@ -577,7 +577,7 @@ sub set_depth_levels {
# initialize() is called in the main LaTeX2HTML script (which happens
# before style files are loaded).
#
%declarations = ('preform' => '<dl><dd><pre class="verbatim"></pre></dl>',
%declarations = ('preform' => '<div class="verbatim"><pre></pre></div>',
%declarations);