Hello,

  When I was using makeinfo (4.0), I found that the format of the menu
in a html file was ugly. See the following test source:

\input texinfo

@ifnottex

@node Top
@top test

@end ifnottex

@menu
head1

* node1::

head2

* node2::
@end menu

@node node1
@chapter chapter1

@node node2
@chapter chapter2

  The info file generated from this TeXinfo source is displayed like
this:

* Menu:

head1

* node1::

head2

* node2::

  This is the very thing I expected, but the html file generated is
displayed like this (I've tested it by w3m and Netscape):

head1 
   
   node1: 
   
   head2 
   node2: 

Because makeinfo assumes that "head2" should be between <ul> and
</ul> as well as "node1" and "node2". I think makeinfo should produce
the following html instead:

<p>head1

<ul>
<li><a href="#node1">node1</a>:
</ul>

<p>head2

<ul>
</p><li><a href="#node2">node2</a>: 
</ul>


Regards,
OKUJI
----------------------------------------------------------------------
OKUJI Yoshinori  <[EMAIL PROTECTED]>           ^o-o^
http://duff.kuicr.kyoto-u.ac.jp/~okuji (in English)     m /

Reply via email to