bug-texinfo
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

trivial html output patch


From: Per Bothner
Subject: trivial html output patch
Date: Wed, 13 Feb 2002 10:06:39 -0800
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.8+) Gecko/20020208

The appended patch fixes a trivial capiatlization bug.  This is needed
for xhtml, which I think is what makeinfo --html should produce.

This is only a small step in producing xhtml.  To start with, we need to
emit close tags - e.g. a </p> for each <p>.
--
        --Per Bothner
address@hidden   http://www.bothner.com/per/
--- insertion.c~        Wed Jan 16 07:52:54 2002
+++ insertion.c Wed Feb 13 10:00:38 2002
@@ -840,7 +840,7 @@
          case deftypeivar:
            if (html)
              /* close the tables which has been opened in defun.c */
-              add_word ("</TD></TR>\n</TABLE>\n");
+              add_word ("</td></tr>\n</table>\n");
             break;
           } /* switch (base_type)... */
   

reply via email to

[Prev in Thread] Current Thread [Next in Thread]