[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: HTML tag mismatch for @subsection
From: |
Karl Berry |
Subject: |
Re: HTML tag mismatch for @subsection |
Date: |
Mon, 14 Jul 2003 09:45:47 -0400 |
Hi Jesper,
<h3 class="subsection">foo</h4>
<h3 class="subsubsection">bar</h5>
Thanks for the report, patch follows.
k
*** sectioning.c 13 May 2003 16:37:54 -0000 1.10
--- sectioning.c 14 Jul 2003 13:20:18 -0000 1.11
***************
*** 483,489 ****
if (outstanding_node)
outstanding_node = 0;
! add_word_args ("</h%d>", level + 2);
close_paragraph();
filling_enabled = 1;
no_indent = old_no_indent;
--- 483,489 ----
if (outstanding_node)
outstanding_node = 0;
! add_word_args ("</h%d>", MIN (3, level + 2));
close_paragraph();
filling_enabled = 1;
no_indent = old_no_indent;