texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * tp/Makefile.tres, tp/t/96moresectioning.t: do n


From: Patrice Dumas
Subject: branch master updated: * tp/Makefile.tres, tp/t/96moresectioning.t: do not use the texi2html style for node_footnote.texi related tests, instead set only the relevant customization variables. Add a test with node_footnote.texi, split at node with separate footnotestyle.
Date: Sun, 01 Jan 2023 17:35:08 -0500

This is an automated email from the git hooks/post-receive script.

pertusus pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new b8c71a7bdc * tp/Makefile.tres, tp/t/96moresectioning.t: do not use the 
texi2html style for node_footnote.texi related tests, instead set only the 
relevant customization variables.  Add a test with node_footnote.texi, split at 
node with separate footnotestyle.
b8c71a7bdc is described below

commit b8c71a7bdca52c0c0d7fb6390002976c9e7bb107
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sun Jan 1 23:34:58 2023 +0100

    * tp/Makefile.tres, tp/t/96moresectioning.t: do not use the texi2html
    style for node_footnote.texi related tests, instead set only the
    relevant customization variables.  Add a test with node_footnote.texi,
    split at node with separate footnotestyle.
---
 ChangeLog                                          |    7 +
 tp/Makefile.tres                                   |    6 +-
 tp/t/96moresectioning.t                            |   48 +-
 .../node_footnote_end/res_html/node_footnote.html  |   34 +-
 .../res_html/node_footnote.html                    |   34 +-
 .../node_footnote_use_node/res_html/a.html         |   81 +-
 .../node_footnote_use_node/res_html/chapter.html   |   33 +-
 .../node_footnote_use_node/res_html/index.html     |   37 +-
 .../res_html/node_footnote_abt.html                |  148 ---
 .../node_footnote_use_node_separate.pl             | 1318 ++++++++++++++++++++
 .../res_html/a.html                                |   57 +
 .../res_html/chapter.html                          |   47 +
 .../res_html/index.html                            |   55 +
 .../res_html/node_footnote_fot.html                |   43 +
 14 files changed, 1619 insertions(+), 329 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 6b88b96c9b..c87371f941 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2023-01-01  Patrice Dumas  <pertusus@free.fr>
+
+       * tp/Makefile.tres, tp/t/96moresectioning.t: do not use the texi2html
+       style for node_footnote.texi related tests, instead set only the
+       relevant customization variables.  Add a test with node_footnote.texi,
+       split at node with separate footnotestyle.
+
 2023-01-01  Patrice Dumas  <pertusus@free.fr>
 
        * tp/Makefile.am (test_files), tp/Makefile.tres, tp/t/30sectioning.t,
diff --git a/tp/Makefile.tres b/tp/Makefile.tres
index 7b085dd2b7..f58dab1711 100644
--- a/tp/Makefile.tres
+++ b/tp/Makefile.tres
@@ -1558,7 +1558,11 @@ test_files_generated_list = 
$(test_tap_files_generated_list) \
   t/results/moresectioning/node_footnote_use_node/res_html/a.html \
   t/results/moresectioning/node_footnote_use_node/res_html/chapter.html \
   t/results/moresectioning/node_footnote_use_node/res_html/index.html \
-  
t/results/moresectioning/node_footnote_use_node/res_html/node_footnote_abt.html 
\
+  t/results/moresectioning/node_footnote_use_node_separate.pl \
+  t/results/moresectioning/node_footnote_use_node_separate/res_html/a.html \
+  
t/results/moresectioning/node_footnote_use_node_separate/res_html/chapter.html \
+  t/results/moresectioning/node_footnote_use_node_separate/res_html/index.html 
\
+  
t/results/moresectioning/node_footnote_use_node_separate/res_html/node_footnote_fot.html
 \
   t/results/moresectioning/nodes_after_top_before_chapter.pl \
   
t/results/moresectioning/nodes_after_top_before_chapter/res_html/nodes_after_top_before_chapter.html
 \
   t/results/moresectioning/nodes_after_top_before_chapter_use_nodes_chapter.pl 
\
diff --git a/tp/t/96moresectioning.t b/tp/t/96moresectioning.t
index a18201c7eb..25fa1095ba 100644
--- a/tp/t/96moresectioning.t
+++ b/tp/t/96moresectioning.t
@@ -9,93 +9,97 @@ require 't/test_utils.pl';
 # under tp/tests did, but to be faster, as we are avoiding the
 # start-up time of perl for every one.
 my @test_cases = (
+# in this test, there are three nodes with the same transliterations
+# that end up in the same file even when split at node
+['node_footnote_use_node',
+  undef,
+  {'test_file' => 'node_footnote.texi'},
+  {'FORMAT_MENU' => 'menu'}
+],
 ['node_footnote_end',
   undef,
   # also tests for node with section command nor directions after
   # a section, and Top without @top and chapter in menu
   {'test_file' => 'node_footnote.texi', 'CHECK_NORMAL_MENU_STRUCTURE' => 1},
-  {'footnotestyle' => 'end'}
+  {'SPLIT' => '', 'USE_NODES' => 0}
 ],
-['node_footnote_use_node',
+# actually the same output as node_footnote_end.
+['node_footnote_separated',
   undef,
   {'test_file' => 'node_footnote.texi'},
-  {'footnotestyle' => 'end',
-    'SPLIT' => 'node',
-    'USE_NODES' => 1,
-    'NODE_FILES' => 1
-  }
+  {'SPLIT' => '', 'USE_NODES' => 0,
+   'footnotestyle' => 'separate'}
 ],
-['node_footnote_separated',
+['node_footnote_use_node_separate',
   undef,
   {'test_file' => 'node_footnote.texi'},
-  {'footnotestyle' => 'separate'}
+  {'footnotestyle' => 'separate', 'FORMAT_MENU' => 'menu'}
 ],
 ['nodes_after_top_before_chapter',
   undef,
   {'test_file' => 'nodes_after_top_before_chapter.texi'},
-  {}
+  {'TEXI2HTML' => 1, }
 ],
 ['nodes_after_top_before_chapter_use_nodes_chapter',
   undef,
   {'test_file' => 'nodes_after_top_before_chapter.texi'},
-  {'USE_NODES' => 1, 'SPLIT' => 'chapter'}
+  {'TEXI2HTML' => 1, 'USE_NODES' => 1, 'SPLIT' => 'chapter'}
 ],
 ['nodes_after_top_before_section',
   undef,
   {'test_file' => 'nodes_after_top_before_section.texi'},
-  {'SPLIT' => 'chapter'}
+  {'TEXI2HTML' => 1, 'SPLIT' => 'chapter'}
 ],
 ['nodes_after_top_before_section_use_nodes',
   undef,
   {'test_file' => 'nodes_after_top_before_section.texi'},
-  {'USE_NODES' => 1}
+  {'TEXI2HTML' => 1, 'USE_NODES' => 1}
 ],
 ['nodes_after_top_before_section_use_nodes_chapter',
   undef,
   {'test_file' => 'nodes_after_top_before_section.texi'},
-  {'USE_NODES' => 1, 'SPLIT' => 'chapter'}
+  {'TEXI2HTML' => 1, 'USE_NODES' => 1, 'SPLIT' => 'chapter'}
 ],
 ['sectioning_frames',
   undef,
   # tests for node with directions after section
   {'test_file' => 'sectioning.texi', 'CHECK_NORMAL_MENU_STRUCTURE' => 1},
-  {'SPLIT' => 'chapter', 'FRAMES' => 1}
+  {'TEXI2HTML' => 1, 'SPLIT' => 'chapter', 'FRAMES' => 1}
 ],
 ['placed_things_before_element',
   undef,
   {'test_file' => 'placed_things_before_element.texi'},
-  {}
+  {'TEXI2HTML' => 1, }
 ],
 ['more_sections_than_nodes',
   undef,
   {'test_file' => 'more_sections_than_nodes.texi'},
-  {}
+  {'TEXI2HTML' => 1, }
 ],
 ['two_footnotes_in_nodes',
   undef,
   {'test_file' => 'two_footnotes_in_nodes.texi'},
-  {}
+  {'TEXI2HTML' => 1, }
 ],
 ['two_footnotes_in_nodes_separated',
   undef,
   {'test_file' => 'two_footnotes_in_nodes.texi'},
-  {'footnotestyle' => 'separate'}
+  {'TEXI2HTML' => 1, 'footnotestyle' => 'separate'}
 ],
 ['top_node_up_implicit',
   undef,
   {'test_file' => 'top_node_up_implicit.texi'},
-  {'TOP_NODE_UP_URL' => 'http://itop.example.org'}
+  {'TEXI2HTML' => 1, 'TOP_NODE_UP_URL' => 'http://itop.example.org'}
 ],
 ['top_node_up_explicit',
   undef,
   {'test_file' => 'top_node_up_explicit.texi'},
-  {'TOP_NODE_UP_URL' => 'http://etop.example.org'}
+  {'TEXI2HTML' => 1, 'TOP_NODE_UP_URL' => 'http://etop.example.org'}
 ],
 );
 
 foreach my $test (@test_cases) {
   push @{$test->[2]->{'test_formats'}}, 'file_html';
-  $test->[3]->{'TEXI2HTML'} = 1;
 }
 
 run_all('moresectioning', [@test_cases]);
diff --git 
a/tp/t/results/moresectioning/node_footnote_end/res_html/node_footnote.html 
b/tp/t/results/moresectioning/node_footnote_end/res_html/node_footnote.html
index aadae9a4b2..0bde29ba42 100644
--- a/tp/t/results/moresectioning/node_footnote_end/res_html/node_footnote.html
+++ b/tp/t/results/moresectioning/node_footnote_end/res_html/node_footnote.html
@@ -11,13 +11,10 @@
 <meta name="distribution" content="global">
 <meta name="viewport" content="width=device-width,initial-scale=1">
 
-<style type="text/css">
-<!--
-span.program-in-footer {font-size: smaller}
-td.menu-entry-description {vertical-align: top}
-td.menu-entry-destination {vertical-align: top}
--->
-</style>
+<link href="#chapter" rel="start" title="1 chapter">
+<link href="#chapter" rel="up" title="1 chapter">
+<link href="#chapter" rel="next" title="1 chapter">
+<link href="#chapter" rel="prev" title="1 chapter">
 
 
 </head>
@@ -25,16 +22,6 @@ td.menu-entry-destination {vertical-align: top}
 <body lang="en">
 
 <a class="node" id="Top"></a>
-<table class="menu" border="0" cellspacing="0">
-<tr><td class="menu-entry-destination">&bull; <a 
href="#g_t_00e1">&aacute;</a></td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
-</td></tr>
-<tr><td class="menu-entry-destination">&bull; <a 
href="#g_t_00e2">&acirc;</a></td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
-</td></tr>
-<tr><td class="menu-entry-destination"><a href="#chapter">1 
chapter</a></td><td>&nbsp;&nbsp;</td><td class="menu-entry-description">
-</td></tr>
-<tr><td class="menu-entry-destination">&bull; <a 
href="#g_t_00e0">&agrave;</a></td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
-</td></tr>
-</table>
 
 <a class="node" id="g_t_00e1"></a>
 <p>node &aacute;,
@@ -45,12 +32,8 @@ Footnote 1<a class="footnote" id="DOCF1" 
href="#FOOT1"><sup>1</sup></a>.
 Footnote 2<a class="footnote" id="DOCF2" href="#FOOT2"><sup>2</sup></a>.
 </p>
 <div class="chapter-level-extent" id="chapter">
-<h1 class="chapter" id="chapter-1">1 chapter</h1>
+<h2 class="chapter" id="chapter-1">1 chapter</h2>
 
-<table class="menu" border="0" cellspacing="0">
-<tr><td class="menu-entry-destination">&bull; <a 
href="#g_t_00e0">&agrave;</a></td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
-</td></tr>
-</table>
 
 <a class="node" id="g_t_00e0"></a>
 <p>node &agrave;,
@@ -58,7 +41,7 @@ Footnote 3<a class="footnote" id="DOCF3" 
href="#FOOT3"><sup>3</sup></a>.
 </p>
 <div class="footnotes-segment">
 <hr>
-<h3 class="footnotes-heading">Footnotes</h3>
+<h4 class="footnotes-heading">Footnotes</h4>
 
 <h5 class="footnote-body-heading"><a id="FOOT1" href="#DOCF1">(1)</a></h5>
 <p>foot 1 &aacute;</p>
@@ -67,11 +50,8 @@ Footnote 3<a class="footnote" id="DOCF3" 
href="#FOOT3"><sup>3</sup></a>.
 <h5 class="footnote-body-heading"><a id="FOOT3" href="#DOCF3">(3)</a></h5>
 <p>foot 3 &agrave;</p>
 </div>
-<hr>
 </div>
-<p>
-  <span class="program-in-footer">This document was generated on <em 
class="emph">a sunny day</em>.</span>
-</p>
+
 
 
 </body>
diff --git 
a/tp/t/results/moresectioning/node_footnote_separated/res_html/node_footnote.html
 
b/tp/t/results/moresectioning/node_footnote_separated/res_html/node_footnote.html
index aadae9a4b2..0bde29ba42 100644
--- 
a/tp/t/results/moresectioning/node_footnote_separated/res_html/node_footnote.html
+++ 
b/tp/t/results/moresectioning/node_footnote_separated/res_html/node_footnote.html
@@ -11,13 +11,10 @@
 <meta name="distribution" content="global">
 <meta name="viewport" content="width=device-width,initial-scale=1">
 
-<style type="text/css">
-<!--
-span.program-in-footer {font-size: smaller}
-td.menu-entry-description {vertical-align: top}
-td.menu-entry-destination {vertical-align: top}
--->
-</style>
+<link href="#chapter" rel="start" title="1 chapter">
+<link href="#chapter" rel="up" title="1 chapter">
+<link href="#chapter" rel="next" title="1 chapter">
+<link href="#chapter" rel="prev" title="1 chapter">
 
 
 </head>
@@ -25,16 +22,6 @@ td.menu-entry-destination {vertical-align: top}
 <body lang="en">
 
 <a class="node" id="Top"></a>
-<table class="menu" border="0" cellspacing="0">
-<tr><td class="menu-entry-destination">&bull; <a 
href="#g_t_00e1">&aacute;</a></td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
-</td></tr>
-<tr><td class="menu-entry-destination">&bull; <a 
href="#g_t_00e2">&acirc;</a></td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
-</td></tr>
-<tr><td class="menu-entry-destination"><a href="#chapter">1 
chapter</a></td><td>&nbsp;&nbsp;</td><td class="menu-entry-description">
-</td></tr>
-<tr><td class="menu-entry-destination">&bull; <a 
href="#g_t_00e0">&agrave;</a></td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
-</td></tr>
-</table>
 
 <a class="node" id="g_t_00e1"></a>
 <p>node &aacute;,
@@ -45,12 +32,8 @@ Footnote 1<a class="footnote" id="DOCF1" 
href="#FOOT1"><sup>1</sup></a>.
 Footnote 2<a class="footnote" id="DOCF2" href="#FOOT2"><sup>2</sup></a>.
 </p>
 <div class="chapter-level-extent" id="chapter">
-<h1 class="chapter" id="chapter-1">1 chapter</h1>
+<h2 class="chapter" id="chapter-1">1 chapter</h2>
 
-<table class="menu" border="0" cellspacing="0">
-<tr><td class="menu-entry-destination">&bull; <a 
href="#g_t_00e0">&agrave;</a></td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
-</td></tr>
-</table>
 
 <a class="node" id="g_t_00e0"></a>
 <p>node &agrave;,
@@ -58,7 +41,7 @@ Footnote 3<a class="footnote" id="DOCF3" 
href="#FOOT3"><sup>3</sup></a>.
 </p>
 <div class="footnotes-segment">
 <hr>
-<h3 class="footnotes-heading">Footnotes</h3>
+<h4 class="footnotes-heading">Footnotes</h4>
 
 <h5 class="footnote-body-heading"><a id="FOOT1" href="#DOCF1">(1)</a></h5>
 <p>foot 1 &aacute;</p>
@@ -67,11 +50,8 @@ Footnote 3<a class="footnote" id="DOCF3" 
href="#FOOT3"><sup>3</sup></a>.
 <h5 class="footnote-body-heading"><a id="FOOT3" href="#DOCF3">(3)</a></h5>
 <p>foot 3 &agrave;</p>
 </div>
-<hr>
 </div>
-<p>
-  <span class="program-in-footer">This document was generated on <em 
class="emph">a sunny day</em>.</span>
-</p>
+
 
 
 </body>
diff --git a/tp/t/results/moresectioning/node_footnote_use_node/res_html/a.html 
b/tp/t/results/moresectioning/node_footnote_use_node/res_html/a.html
index 3535073f7e..e081b7cd66 100644
--- a/tp/t/results/moresectioning/node_footnote_use_node/res_html/a.html
+++ b/tp/t/results/moresectioning/node_footnote_use_node/res_html/a.html
@@ -11,61 +11,38 @@
 <meta name="distribution" content="global">
 <meta name="viewport" content="width=device-width,initial-scale=1">
 
-<style type="text/css">
-<!--
-span.program-in-footer {font-size: smaller}
--->
-</style>
+<link href="index.html" rel="start" title="Top">
+<link href="index.html" rel="up" title="Top">
+<link href="#g_t_00e2" rel="next" title="&acirc;">
+<link href="index.html" rel="prev" title="Top">
 
 
 </head>
 
 <body lang="en">
-<a class="node-id" id="g_t_00e1"></a><table class="nav-panel" cellpadding="1" 
cellspacing="1" border="0">
-<tr><td>[ &lt;&lt; ]</td>
-<td>[<a href="index.html" title="Previous section in reading order"> &lt; 
</a>]</td>
-<td>[<a href="index.html" title="Up section"> Up </a>]</td>
-<td>[<a href="#g_t_00e2" title="Next section in reading order"> &gt; </a>]</td>
-<td>[ &gt;&gt; ]</td>
-<td> &nbsp; </td>
-<td> &nbsp; </td>
-<td> &nbsp; </td>
-<td> &nbsp; </td>
-<td>[<a href="index.html" title="Cover (top) of document">Top</a>]</td>
-<td>[Contents]</td>
-<td>[Index]</td>
-<td>[<a href="node_footnote_abt.html#SEC_About" title="About (help)"> ? 
</a>]</td>
-</tr></table>
+<a class="node-id" id="g_t_00e1"></a><div class="nav-panel">
+<p>
+Next: <a href="#g_t_00e2" accesskey="n" rel="next">&acirc;</a>, Previous: <a 
href="index.html" accesskey="p" rel="prev">Top</a>, Up: <a href="index.html" 
accesskey="u" rel="up">Top</a> &nbsp; </p>
+</div>
 <hr>
-<h3 class="node">&aacute;</h3>
+<h4 class="node">&aacute;</h4>
 
 <p>node &aacute;,
 Footnote 1<a class="footnote" id="DOCF1" href="#FOOT1"><sup>1</sup></a>.
 </p>
 <hr>
-<a class="node-id" id="g_t_00e2"></a><table class="nav-panel" cellpadding="1" 
cellspacing="1" border="0">
-<tr><td>[ &lt;&lt; ]</td>
-<td>[<a href="#g_t_00e1" title="Previous section in reading order"> &lt; 
</a>]</td>
-<td>[<a href="index.html" title="Up section"> Up </a>]</td>
-<td>[<a href="chapter.html" title="Next section in reading order"> &gt; 
</a>]</td>
-<td>[ &gt;&gt; ]</td>
-<td> &nbsp; </td>
-<td> &nbsp; </td>
-<td> &nbsp; </td>
-<td> &nbsp; </td>
-<td>[<a href="index.html" title="Cover (top) of document">Top</a>]</td>
-<td>[Contents]</td>
-<td>[Index]</td>
-<td>[<a href="node_footnote_abt.html#SEC_About" title="About (help)"> ? 
</a>]</td>
-</tr></table>
-<h3 class="node">&acirc;</h3>
+<a class="node-id" id="g_t_00e2"></a><div class="nav-panel">
+<p>
+Next: <a href="chapter.html" accesskey="n" rel="next">chapter</a>, Previous: 
<a href="#g_t_00e1" accesskey="p" rel="prev">&aacute;</a>, Up: <a 
href="index.html" accesskey="u" rel="up">Top</a> &nbsp; </p>
+</div>
+<h4 class="node">&acirc;</h4>
 
 <p>node &acirc;,
 Footnote 2<a class="footnote" id="DOCF2" href="#FOOT2"><sup>2</sup></a>.
 </p>
 <div class="footnotes-segment">
 <hr>
-<h3 class="footnotes-heading">Footnotes</h3>
+<h4 class="footnotes-heading">Footnotes</h4>
 
 <h5 class="footnote-body-heading"><a id="FOOT1" href="#DOCF1">(1)</a></h5>
 <p>foot 1 &aacute;</p>
@@ -73,37 +50,23 @@ Footnote 2<a class="footnote" id="DOCF2" 
href="#FOOT2"><sup>2</sup></a>.
 <p>foot 2 &acirc;</p>
 </div>
 <hr>
-<a class="node-id" id="g_t_00e0"></a><table class="nav-panel" cellpadding="1" 
cellspacing="1" border="0">
-<tr><td>[<a href="chapter.html" title="Beginning of this chapter or previous 
chapter"> &lt;&lt; </a>]</td>
-<td>[<a href="chapter.html" title="Previous section in reading order"> &lt; 
</a>]</td>
-<td>[<a href="chapter.html" title="Up section"> Up </a>]</td>
-<td>[ &gt; ]</td>
-<td>[ &gt;&gt; ]</td>
-<td> &nbsp; </td>
-<td> &nbsp; </td>
-<td> &nbsp; </td>
-<td> &nbsp; </td>
-<td>[<a href="index.html" title="Cover (top) of document">Top</a>]</td>
-<td>[Contents]</td>
-<td>[Index]</td>
-<td>[<a href="node_footnote_abt.html#SEC_About" title="About (help)"> ? 
</a>]</td>
-</tr></table>
-<h3 class="node">&agrave;</h3>
+<a class="node-id" id="g_t_00e0"></a><div class="nav-panel">
+<p>
+Previous: <a href="chapter.html" accesskey="p" rel="prev">chapter</a>, Up: <a 
href="chapter.html" accesskey="u" rel="up">chapter</a> &nbsp; </p>
+</div>
+<h4 class="node">&agrave;</h4>
 
 <p>node &agrave;,
 Footnote 3<a class="footnote" id="DOCF3" href="#FOOT3"><sup>3</sup></a>.
 </p>
 <div class="footnotes-segment">
 <hr>
-<h3 class="footnotes-heading">Footnotes</h3>
+<h4 class="footnotes-heading">Footnotes</h4>
 
 <h5 class="footnote-body-heading"><a id="FOOT3" href="#DOCF3">(3)</a></h5>
 <p>foot 3 &agrave;</p>
 </div>
-<hr>
-<p>
-  <span class="program-in-footer">This document was generated on <em 
class="emph">a sunny day</em>.</span>
-</p>
+
 
 
 </body>
diff --git 
a/tp/t/results/moresectioning/node_footnote_use_node/res_html/chapter.html 
b/tp/t/results/moresectioning/node_footnote_use_node/res_html/chapter.html
index cc94cccbaa..4bbb87bb5e 100644
--- a/tp/t/results/moresectioning/node_footnote_use_node/res_html/chapter.html
+++ b/tp/t/results/moresectioning/node_footnote_use_node/res_html/chapter.html
@@ -11,9 +11,12 @@
 <meta name="distribution" content="global">
 <meta name="viewport" content="width=device-width,initial-scale=1">
 
+<link href="index.html" rel="start" title="Top">
+<link href="index.html" rel="up" title="Top">
+<link href="a.html#g_t_00e0" rel="next" title="&agrave;">
+<link href="a.html#g_t_00e2" rel="prev" title="&acirc;">
 <style type="text/css">
 <!--
-span.program-in-footer {font-size: smaller}
 td.menu-entry-description {vertical-align: top}
 td.menu-entry-destination {vertical-align: top}
 -->
@@ -24,34 +27,20 @@ td.menu-entry-destination {vertical-align: top}
 
 <body lang="en">
 <div class="chapter-level-extent" id="chapter">
-<table class="nav-panel" cellpadding="1" cellspacing="1" border="0">
-<tr><td>[ &lt;&lt; ]</td>
-<td>[<a href="a.html#g_t_00e2" title="Previous section in reading order"> &lt; 
</a>]</td>
-<td>[<a href="index.html" title="Up section"> Up </a>]</td>
-<td>[<a href="a.html#g_t_00e0" title="Next section in reading order"> &gt; 
</a>]</td>
-<td>[ &gt;&gt; ]</td>
-<td> &nbsp; </td>
-<td> &nbsp; </td>
-<td> &nbsp; </td>
-<td> &nbsp; </td>
-<td>[<a href="index.html" title="Cover (top) of document">Top</a>]</td>
-<td>[Contents]</td>
-<td>[Index]</td>
-<td>[<a href="node_footnote_abt.html#SEC_About" title="About (help)"> ? 
</a>]</td>
-</tr></table>
+<div class="nav-panel">
+<p>
+Next: <a href="a.html#g_t_00e0" accesskey="n" rel="next">&agrave;</a>, 
Previous: <a href="a.html#g_t_00e2" accesskey="p" rel="prev">&acirc;</a>, Up: 
<a href="index.html" accesskey="u" rel="up">Top</a> &nbsp; </p>
+</div>
 <hr>
-<h1 class="chapter" id="chapter-1">1 chapter</h1>
+<h2 class="chapter" id="chapter-1">1 chapter</h2>
 
 <table class="menu" border="0" cellspacing="0">
-<tr><td class="menu-entry-destination">&bull; <a 
href="a.html#g_t_00e0">&agrave;</a></td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
+<tr><td class="menu-entry-destination">&bull; <a href="a.html#g_t_00e0" 
accesskey="1">&agrave;</a>:</td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
 </td></tr>
 </table>
 
 </div>
-<hr>
-<p>
-  <span class="program-in-footer">This document was generated on <em 
class="emph">a sunny day</em>.</span>
-</p>
+
 
 
 </body>
diff --git 
a/tp/t/results/moresectioning/node_footnote_use_node/res_html/index.html 
b/tp/t/results/moresectioning/node_footnote_use_node/res_html/index.html
index 8b1ed08763..0725c8c1f8 100644
--- a/tp/t/results/moresectioning/node_footnote_use_node/res_html/index.html
+++ b/tp/t/results/moresectioning/node_footnote_use_node/res_html/index.html
@@ -11,9 +11,10 @@
 <meta name="distribution" content="global">
 <meta name="viewport" content="width=device-width,initial-scale=1">
 
+<link href="#Top" rel="start" title="Top">
+<link href="a.html#g_t_00e1" rel="next" title="&aacute;">
 <style type="text/css">
 <!--
-span.program-in-footer {font-size: smaller}
 td.menu-entry-description {vertical-align: top}
 td.menu-entry-destination {vertical-align: top}
 -->
@@ -24,40 +25,30 @@ td.menu-entry-destination {vertical-align: top}
 
 <body lang="en">
 
-<a class="node-id" id="Top"></a><table class="nav-panel" cellpadding="1" 
cellspacing="1" border="0">
-<tr><td>[ &lt; ]</td>
-<td>[<a href="a.html#g_t_00e1" title="Next section in reading order"> &gt; 
</a>]</td>
-<td> &nbsp; </td>
-<td>[Contents]</td>
-<td>[Index]</td>
-<td>[<a href="node_footnote_abt.html#SEC_About" title="About (help)"> ? 
</a>]</td>
-</tr></table>
+<a class="node-id" id="Top"></a><div class="nav-panel">
+<p>
+Next: <a href="a.html#g_t_00e1" accesskey="n" rel="next">&aacute;</a> &nbsp; 
</p>
+</div>
 <hr>
 <h1 class="node">Top</h1>
 
 <table class="menu" border="0" cellspacing="0">
-<tr><td class="menu-entry-destination">&bull; <a 
href="a.html#g_t_00e1">&aacute;</a></td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
+<tr><td class="menu-entry-destination">&bull; <a href="a.html#g_t_00e1" 
accesskey="1">&aacute;</a>:</td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
 </td></tr>
-<tr><td class="menu-entry-destination">&bull; <a 
href="a.html#g_t_00e2">&acirc;</a></td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
+<tr><td class="menu-entry-destination">&bull; <a href="a.html#g_t_00e2" 
accesskey="2">&acirc;</a>:</td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
 </td></tr>
-<tr><td class="menu-entry-destination">&bull; <a 
href="chapter.html">chapter</a></td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
+<tr><td class="menu-entry-destination">&bull; <a href="chapter.html" 
accesskey="3">chapter</a>:</td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
 </td></tr>
-<tr><td class="menu-entry-destination">&bull; <a 
href="a.html#g_t_00e0">&agrave;</a></td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
+<tr><td class="menu-entry-destination">&bull; <a href="a.html#g_t_00e0" 
accesskey="4">&agrave;</a>:</td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
 </td></tr>
 </table>
 
 <hr>
-<table class="nav-panel" cellpadding="1" cellspacing="1" border="0">
-<tr><td>[ &lt; ]</td>
-<td>[<a href="a.html#g_t_00e1" title="Next section in reading order"> &gt; 
</a>]</td>
-<td> &nbsp; </td>
-<td>[Contents]</td>
-<td>[Index]</td>
-<td>[<a href="node_footnote_abt.html#SEC_About" title="About (help)"> ? 
</a>]</td>
-</tr></table>
+<div class="nav-panel">
 <p>
-  <span class="program-in-footer">This document was generated on <em 
class="emph">a sunny day</em>.</span>
-</p>
+Next: <a href="a.html#g_t_00e1" accesskey="n" rel="next">&aacute;</a> &nbsp; 
</p>
+</div>
+
 
 
 </body>
diff --git 
a/tp/t/results/moresectioning/node_footnote_use_node/res_html/node_footnote_abt.html
 
b/tp/t/results/moresectioning/node_footnote_use_node/res_html/node_footnote_abt.html
deleted file mode 100644
index 085d3fe77e..0000000000
--- 
a/tp/t/results/moresectioning/node_footnote_use_node/res_html/node_footnote_abt.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<!DOCTYPE html>
-<html>
-<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>About This Document (Untitled Document)</title>
-
-<meta name="description" content="About This Document (Untitled Document)">
-<meta name="keywords" content="About This Document (Untitled Document)">
-<meta name="resource-type" content="document">
-<meta name="distribution" content="global">
-<meta name="viewport" content="width=device-width,initial-scale=1">
-
-<style type="text/css">
-<!--
-span.program-in-footer {font-size: smaller}
-td.button-direction-about {text-align:center}
-td.name-direction-about {text-align:center}
--->
-</style>
-
-
-</head>
-
-<body lang="en">
-<div class="element-about" id="SEC_About">
-<table class="nav-panel" cellpadding="1" cellspacing="1" border="0">
-<tr><td>[<a href="index.html" title="Cover (top) of document">Top</a>]</td>
-<td>[Contents]</td>
-<td>[Index]</td>
-<td>[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
-</tr></table>
-<hr>
-<h1 class="about-heading">About This Document</h1>
-
-<p>
-  This document was generated on <em class="emph">a sunny day</em>.
-</p>
-<p>
-  The buttons in the navigation panels have the following meaning:
-</p>
-<table border="1">
-  <tr>
-    <th> Button </th>
-    <th> Name </th>
-    <th> Go to </th>
-    <th> From 1.2.3 go to</th>
-  </tr>
-  <tr>
-    <td class="button-direction-about"> [ &lt;&lt; ] </td>
-    <td class="name-direction-about">FastBack</td>
-    <td>Beginning of this chapter or previous chapter</td>
-    <td>1</td>
-  </tr>
-  <tr>
-    <td class="button-direction-about"> [ &lt; ] </td>
-    <td class="name-direction-about">Back</td>
-    <td>Previous section in reading order</td>
-    <td>1.2.2</td>
-  </tr>
-  <tr>
-    <td class="button-direction-about"> [ Up ] </td>
-    <td class="name-direction-about">Up</td>
-    <td>Up section</td>
-    <td>1.2</td>
-  </tr>
-  <tr>
-    <td class="button-direction-about"> [ &gt; ] </td>
-    <td class="name-direction-about">Forward</td>
-    <td>Next section in reading order</td>
-    <td>1.2.4</td>
-  </tr>
-  <tr>
-    <td class="button-direction-about"> [ &gt;&gt; ] </td>
-    <td class="name-direction-about">FastForward</td>
-    <td>Next chapter</td>
-    <td>2</td>
-  </tr>
-  <tr>
-    <td class="button-direction-about"> [Top] </td>
-    <td class="name-direction-about">Top</td>
-    <td>Cover (top) of document</td>
-    <td> &nbsp; </td>
-  </tr>
-  <tr>
-    <td class="button-direction-about"> [Contents] </td>
-    <td class="name-direction-about">Contents</td>
-    <td>Table of contents</td>
-    <td> &nbsp; </td>
-  </tr>
-  <tr>
-    <td class="button-direction-about"> [Index] </td>
-    <td class="name-direction-about">Index</td>
-    <td>Index</td>
-    <td> &nbsp; </td>
-  </tr>
-  <tr>
-    <td class="button-direction-about"> [ ? ] </td>
-    <td class="name-direction-about">About</td>
-    <td>About (help)</td>
-    <td> &nbsp; </td>
-  </tr>
-</table>
-
-<p>
-  where the <strong class="strong"> Example </strong> assumes that the current 
position is at <strong class="strong"> Subsubsection One-Two-Three </strong> of 
a document of the following structure:
-</p>
-
-<ul>
-  <li> 1. Section One
-    <ul>
-      <li>1.1 Subsection One-One
-        <ul>
-          <li>...</li>
-        </ul>
-      </li>
-      <li>1.2 Subsection One-Two
-        <ul>
-          <li>1.2.1 Subsubsection One-Two-One</li>
-          <li>1.2.2 Subsubsection One-Two-Two</li>
-          <li>1.2.3 Subsubsection One-Two-Three &nbsp; &nbsp;
-            <strong>&lt;== Current Position </strong></li>
-          <li>1.2.4 Subsubsection One-Two-Four</li>
-        </ul>
-      </li>
-      <li>1.3 Subsection One-Three
-        <ul>
-          <li>...</li>
-        </ul>
-      </li>
-      <li>1.4 Subsection One-Four</li>
-    </ul>
-  </li>
-</ul>
-</div><hr>
-<table class="nav-panel" cellpadding="1" cellspacing="1" border="0">
-<tr><td>[<a href="index.html" title="Cover (top) of document">Top</a>]</td>
-<td>[Contents]</td>
-<td>[Index]</td>
-<td>[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
-</tr></table>
-<p>
-  <span class="program-in-footer">This document was generated on <em 
class="emph">a sunny day</em>.</span>
-</p>
-
-
-</body>
-</html>
diff --git a/tp/t/results/moresectioning/node_footnote_use_node_separate.pl 
b/tp/t/results/moresectioning/node_footnote_use_node_separate.pl
new file mode 100644
index 0000000000..fcd65bf463
--- /dev/null
+++ b/tp/t/results/moresectioning/node_footnote_use_node_separate.pl
@@ -0,0 +1,1318 @@
+use vars qw(%result_texis %result_texts %result_trees %result_errors 
+   %result_indices %result_sectioning %result_nodes %result_menus
+   %result_floats %result_converted %result_converted_errors 
+   %result_elements %result_directions_text %result_indices_sort_strings);
+
+use utf8;
+
+$result_trees{'node_footnote_use_node_separate'} = {
+  'contents' => [
+    {
+      'contents' => [
+        {
+          'contents' => [
+            {
+              'text' => '\\input texinfo @c -*-texinfo-*-
+',
+              'type' => 'text_before_beginning'
+            },
+            {
+              'text' => '
+',
+              'type' => 'text_before_beginning'
+            }
+          ],
+          'type' => 'preamble_before_beginning'
+        },
+        {
+          'contents' => [
+            {
+              'args' => [
+                {
+                  'text' => ' test footnotes with nodes only
+',
+                  'type' => 'misc_arg'
+                }
+              ],
+              'cmdname' => 'c',
+              'extra' => {
+                'misc_args' => [
+                  ' test footnotes with nodes only
+'
+                ]
+              }
+            },
+            {
+              'text' => '
+',
+              'type' => 'empty_line'
+            }
+          ],
+          'type' => 'preamble_before_content'
+        }
+      ],
+      'type' => 'before_node_section'
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'text' => 'Top'
+            }
+          ],
+          'info' => {
+            'spaces_after_argument' => '
+'
+          },
+          'type' => 'line_arg'
+        }
+      ],
+      'cmdname' => 'node',
+      'contents' => [
+        {
+          'text' => '
+',
+          'type' => 'empty_line'
+        },
+        {
+          'args' => [
+            {
+              'info' => {
+                'spaces_after_argument' => '
+'
+              },
+              'type' => 'block_line_arg'
+            }
+          ],
+          'cmdname' => 'menu',
+          'contents' => [
+            {
+              'args' => [
+                {
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'args' => [
+                        {
+                          'contents' => [
+                            {
+                              'text' => 'a'
+                            }
+                          ],
+                          'type' => 'following_arg'
+                        }
+                      ],
+                      'cmdname' => '\'',
+                      'source_info' => {
+                        'file_name' => 'node_footnote.texi',
+                        'line_nr' => 8,
+                        'macro' => ''
+                      }
+                    }
+                  ],
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'contents' => [
+                        {
+                          'text' => '
+'
+                        }
+                      ],
+                      'type' => 'preformatted'
+                    }
+                  ],
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_description' => {},
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => '_00e1'
+                }
+              },
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 8,
+                'macro' => ''
+              },
+              'type' => 'menu_entry'
+            },
+            {
+              'args' => [
+                {
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'args' => [
+                        {
+                          'contents' => [
+                            {
+                              'text' => 'a'
+                            }
+                          ],
+                          'type' => 'following_arg'
+                        }
+                      ],
+                      'cmdname' => '^',
+                      'source_info' => {
+                        'file_name' => 'node_footnote.texi',
+                        'line_nr' => 9,
+                        'macro' => ''
+                      }
+                    }
+                  ],
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'contents' => [
+                        {
+                          'text' => '
+'
+                        }
+                      ],
+                      'type' => 'preformatted'
+                    }
+                  ],
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_description' => {},
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => '_00e2'
+                }
+              },
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 9,
+                'macro' => ''
+              },
+              'type' => 'menu_entry'
+            },
+            {
+              'args' => [
+                {
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'text' => 'chapter'
+                    }
+                  ],
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'contents' => [
+                        {
+                          'text' => '
+'
+                        }
+                      ],
+                      'type' => 'preformatted'
+                    }
+                  ],
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_description' => {},
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => 'chapter'
+                }
+              },
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 10,
+                'macro' => ''
+              },
+              'type' => 'menu_entry'
+            },
+            {
+              'args' => [
+                {
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'args' => [
+                        {
+                          'contents' => [
+                            {
+                              'text' => 'a'
+                            }
+                          ],
+                          'type' => 'following_arg'
+                        }
+                      ],
+                      'cmdname' => '`',
+                      'source_info' => {
+                        'file_name' => 'node_footnote.texi',
+                        'line_nr' => 11,
+                        'macro' => ''
+                      }
+                    }
+                  ],
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'contents' => [
+                        {
+                          'text' => '
+'
+                        }
+                      ],
+                      'type' => 'preformatted'
+                    }
+                  ],
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_description' => {},
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => '_00e0'
+                }
+              },
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 11,
+                'macro' => ''
+              },
+              'type' => 'menu_entry'
+            },
+            {
+              'args' => [
+                {
+                  'contents' => [
+                    {
+                      'text' => 'menu'
+                    }
+                  ],
+                  'info' => {
+                    'spaces_after_argument' => '
+'
+                  },
+                  'type' => 'line_arg'
+                }
+              ],
+              'cmdname' => 'end',
+              'extra' => {
+                'text_arg' => 'menu'
+              },
+              'info' => {
+                'spaces_before_argument' => ' '
+              },
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 12,
+                'macro' => ''
+              }
+            }
+          ],
+          'source_info' => {
+            'file_name' => 'node_footnote.texi',
+            'line_nr' => 7,
+            'macro' => ''
+          }
+        },
+        {
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'node_content' => [
+          {}
+        ],
+        'nodes_manuals' => [
+          {
+            'node_content' => [
+              {}
+            ],
+            'normalized' => 'Top'
+          }
+        ],
+        'normalized' => 'Top'
+      },
+      'info' => {
+        'spaces_before_argument' => ' '
+      },
+      'source_info' => {
+        'file_name' => 'node_footnote.texi',
+        'line_nr' => 5,
+        'macro' => ''
+      }
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'args' => [
+                {
+                  'contents' => [
+                    {
+                      'text' => 'a'
+                    }
+                  ],
+                  'type' => 'following_arg'
+                }
+              ],
+              'cmdname' => '\'',
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 14,
+                'macro' => ''
+              }
+            }
+          ],
+          'info' => {
+            'spaces_after_argument' => '
+'
+          },
+          'type' => 'line_arg'
+        }
+      ],
+      'cmdname' => 'node',
+      'contents' => [
+        {
+          'text' => '
+',
+          'type' => 'empty_line'
+        },
+        {
+          'contents' => [
+            {
+              'text' => 'node '
+            },
+            {
+              'args' => [
+                {
+                  'contents' => [
+                    {
+                      'text' => 'a'
+                    }
+                  ],
+                  'type' => 'following_arg'
+                }
+              ],
+              'cmdname' => '\'',
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 16,
+                'macro' => ''
+              }
+            },
+            {
+              'text' => ',
+'
+            },
+            {
+              'text' => 'Footnote 1'
+            },
+            {
+              'args' => [
+                {
+                  'contents' => [
+                    {
+                      'contents' => [
+                        {
+                          'text' => 'foot 1 '
+                        },
+                        {
+                          'args' => [
+                            {
+                              'contents' => [
+                                {
+                                  'text' => 'a'
+                                }
+                              ],
+                              'type' => 'following_arg'
+                            }
+                          ],
+                          'cmdname' => '\'',
+                          'source_info' => {
+                            'file_name' => 'node_footnote.texi',
+                            'line_nr' => 17,
+                            'macro' => ''
+                          }
+                        }
+                      ],
+                      'type' => 'paragraph'
+                    }
+                  ],
+                  'type' => 'brace_command_context'
+                }
+              ],
+              'cmdname' => 'footnote',
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 17,
+                'macro' => ''
+              }
+            },
+            {
+              'text' => '.
+'
+            }
+          ],
+          'type' => 'paragraph'
+        },
+        {
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'node_content' => [
+          {}
+        ],
+        'nodes_manuals' => [
+          {
+            'node_content' => [
+              {}
+            ],
+            'normalized' => '_00e1'
+          }
+        ],
+        'normalized' => '_00e1'
+      },
+      'info' => {
+        'spaces_before_argument' => ' '
+      },
+      'source_info' => {
+        'file_name' => 'node_footnote.texi',
+        'line_nr' => 14,
+        'macro' => ''
+      }
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'args' => [
+                {
+                  'contents' => [
+                    {
+                      'text' => 'a'
+                    }
+                  ],
+                  'type' => 'following_arg'
+                }
+              ],
+              'cmdname' => '^',
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 19,
+                'macro' => ''
+              }
+            }
+          ],
+          'info' => {
+            'spaces_after_argument' => '
+'
+          },
+          'type' => 'line_arg'
+        }
+      ],
+      'cmdname' => 'node',
+      'contents' => [
+        {
+          'text' => '
+',
+          'type' => 'empty_line'
+        },
+        {
+          'contents' => [
+            {
+              'text' => 'node '
+            },
+            {
+              'args' => [
+                {
+                  'contents' => [
+                    {
+                      'text' => 'a'
+                    }
+                  ],
+                  'type' => 'following_arg'
+                }
+              ],
+              'cmdname' => '^',
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 21,
+                'macro' => ''
+              }
+            },
+            {
+              'text' => ',
+'
+            },
+            {
+              'text' => 'Footnote 2'
+            },
+            {
+              'args' => [
+                {
+                  'contents' => [
+                    {
+                      'contents' => [
+                        {
+                          'text' => 'foot 2 '
+                        },
+                        {
+                          'args' => [
+                            {
+                              'contents' => [
+                                {
+                                  'text' => 'a'
+                                }
+                              ],
+                              'type' => 'following_arg'
+                            }
+                          ],
+                          'cmdname' => '^',
+                          'source_info' => {
+                            'file_name' => 'node_footnote.texi',
+                            'line_nr' => 22,
+                            'macro' => ''
+                          }
+                        }
+                      ],
+                      'type' => 'paragraph'
+                    }
+                  ],
+                  'type' => 'brace_command_context'
+                }
+              ],
+              'cmdname' => 'footnote',
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 22,
+                'macro' => ''
+              }
+            },
+            {
+              'text' => '.
+'
+            }
+          ],
+          'type' => 'paragraph'
+        },
+        {
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'node_content' => [
+          {}
+        ],
+        'nodes_manuals' => [
+          {
+            'node_content' => [
+              {}
+            ],
+            'normalized' => '_00e2'
+          }
+        ],
+        'normalized' => '_00e2'
+      },
+      'info' => {
+        'spaces_before_argument' => ' '
+      },
+      'source_info' => {
+        'file_name' => 'node_footnote.texi',
+        'line_nr' => 19,
+        'macro' => ''
+      }
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'text' => 'chapter'
+            }
+          ],
+          'info' => {
+            'spaces_after_argument' => '
+'
+          },
+          'type' => 'line_arg'
+        }
+      ],
+      'cmdname' => 'node',
+      'extra' => {
+        'node_content' => [
+          {}
+        ],
+        'nodes_manuals' => [
+          {
+            'node_content' => [
+              {}
+            ],
+            'normalized' => 'chapter'
+          }
+        ],
+        'normalized' => 'chapter'
+      },
+      'info' => {
+        'spaces_before_argument' => ' '
+      },
+      'source_info' => {
+        'file_name' => 'node_footnote.texi',
+        'line_nr' => 24,
+        'macro' => ''
+      }
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'text' => 'chapter'
+            }
+          ],
+          'info' => {
+            'spaces_after_argument' => '
+'
+          },
+          'type' => 'line_arg'
+        }
+      ],
+      'cmdname' => 'chapter',
+      'contents' => [
+        {
+          'text' => '
+',
+          'type' => 'empty_line'
+        },
+        {
+          'args' => [
+            {
+              'info' => {
+                'spaces_after_argument' => '
+'
+              },
+              'type' => 'block_line_arg'
+            }
+          ],
+          'cmdname' => 'menu',
+          'contents' => [
+            {
+              'args' => [
+                {
+                  'text' => '* ',
+                  'type' => 'menu_entry_leading_text'
+                },
+                {
+                  'contents' => [
+                    {
+                      'args' => [
+                        {
+                          'contents' => [
+                            {
+                              'text' => 'a'
+                            }
+                          ],
+                          'type' => 'following_arg'
+                        }
+                      ],
+                      'cmdname' => '`',
+                      'source_info' => {
+                        'file_name' => 'node_footnote.texi',
+                        'line_nr' => 28,
+                        'macro' => ''
+                      }
+                    }
+                  ],
+                  'type' => 'menu_entry_node'
+                },
+                {
+                  'text' => '::',
+                  'type' => 'menu_entry_separator'
+                },
+                {
+                  'contents' => [
+                    {
+                      'contents' => [
+                        {
+                          'text' => '
+'
+                        }
+                      ],
+                      'type' => 'preformatted'
+                    }
+                  ],
+                  'type' => 'menu_entry_description'
+                }
+              ],
+              'extra' => {
+                'menu_entry_description' => {},
+                'menu_entry_node' => {
+                  'node_content' => [
+                    {}
+                  ],
+                  'normalized' => '_00e0'
+                }
+              },
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 28,
+                'macro' => ''
+              },
+              'type' => 'menu_entry'
+            },
+            {
+              'args' => [
+                {
+                  'contents' => [
+                    {
+                      'text' => 'menu'
+                    }
+                  ],
+                  'info' => {
+                    'spaces_after_argument' => '
+'
+                  },
+                  'type' => 'line_arg'
+                }
+              ],
+              'cmdname' => 'end',
+              'extra' => {
+                'text_arg' => 'menu'
+              },
+              'info' => {
+                'spaces_before_argument' => ' '
+              },
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 29,
+                'macro' => ''
+              }
+            }
+          ],
+          'source_info' => {
+            'file_name' => 'node_footnote.texi',
+            'line_nr' => 27,
+            'macro' => ''
+          }
+        },
+        {
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {},
+      'info' => {
+        'spaces_before_argument' => ' '
+      },
+      'source_info' => {
+        'file_name' => 'node_footnote.texi',
+        'line_nr' => 25,
+        'macro' => ''
+      }
+    },
+    {
+      'args' => [
+        {
+          'contents' => [
+            {
+              'args' => [
+                {
+                  'contents' => [
+                    {
+                      'text' => 'a'
+                    }
+                  ],
+                  'type' => 'following_arg'
+                }
+              ],
+              'cmdname' => '`',
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 31,
+                'macro' => ''
+              }
+            }
+          ],
+          'info' => {
+            'spaces_after_argument' => '
+'
+          },
+          'type' => 'line_arg'
+        }
+      ],
+      'cmdname' => 'node',
+      'contents' => [
+        {
+          'text' => '
+',
+          'type' => 'empty_line'
+        },
+        {
+          'contents' => [
+            {
+              'text' => 'node '
+            },
+            {
+              'args' => [
+                {
+                  'contents' => [
+                    {
+                      'text' => 'a'
+                    }
+                  ],
+                  'type' => 'following_arg'
+                }
+              ],
+              'cmdname' => '`',
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 33,
+                'macro' => ''
+              }
+            },
+            {
+              'text' => ',
+'
+            },
+            {
+              'text' => 'Footnote 3'
+            },
+            {
+              'args' => [
+                {
+                  'contents' => [
+                    {
+                      'contents' => [
+                        {
+                          'text' => 'foot 3 '
+                        },
+                        {
+                          'args' => [
+                            {
+                              'contents' => [
+                                {
+                                  'text' => 'a'
+                                }
+                              ],
+                              'type' => 'following_arg'
+                            }
+                          ],
+                          'cmdname' => '`',
+                          'source_info' => {
+                            'file_name' => 'node_footnote.texi',
+                            'line_nr' => 34,
+                            'macro' => ''
+                          }
+                        }
+                      ],
+                      'type' => 'paragraph'
+                    }
+                  ],
+                  'type' => 'brace_command_context'
+                }
+              ],
+              'cmdname' => 'footnote',
+              'source_info' => {
+                'file_name' => 'node_footnote.texi',
+                'line_nr' => 34,
+                'macro' => ''
+              }
+            },
+            {
+              'text' => '.
+'
+            }
+          ],
+          'type' => 'paragraph'
+        },
+        {
+          'text' => '
+',
+          'type' => 'empty_line'
+        }
+      ],
+      'extra' => {
+        'node_content' => [
+          {}
+        ],
+        'nodes_manuals' => [
+          {
+            'node_content' => [
+              {}
+            ],
+            'normalized' => '_00e0'
+          }
+        ],
+        'normalized' => '_00e0'
+      },
+      'info' => {
+        'spaces_before_argument' => ' '
+      },
+      'source_info' => {
+        'file_name' => 'node_footnote.texi',
+        'line_nr' => 31,
+        'macro' => ''
+      }
+    },
+    {
+      'args' => [
+        {
+          'text' => '
+',
+          'type' => 'misc_arg'
+        }
+      ],
+      'cmdname' => 'bye'
+    }
+  ],
+  'type' => 'document_root'
+};
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'args'}[3];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[0]{'args'}[1]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[1]{'extra'}{'menu_entry_description'}
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[1]{'args'}[3];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[1]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[1]{'args'}[1]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[2]{'extra'}{'menu_entry_description'}
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[2]{'args'}[3];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[2]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[2]{'args'}[1]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[3]{'extra'}{'menu_entry_description'}
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[3]{'args'}[3];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[3]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'contents'}[1]{'contents'}[3]{'args'}[1]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'extra'}{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'args'}[0]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'extra'}{'nodes_manuals'}[0]{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[1]{'args'}[0]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[2]{'extra'}{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[2]{'args'}[0]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[2]{'extra'}{'nodes_manuals'}[0]{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[2]{'args'}[0]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[3]{'extra'}{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[3]{'args'}[0]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[3]{'extra'}{'nodes_manuals'}[0]{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[3]{'args'}[0]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[4]{'extra'}{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[4]{'args'}[0]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[4]{'extra'}{'nodes_manuals'}[0]{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[4]{'args'}[0]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[5]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_description'}
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[5]{'contents'}[1]{'contents'}[0]{'args'}[3];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[5]{'contents'}[1]{'contents'}[0]{'extra'}{'menu_entry_node'}{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[5]{'contents'}[1]{'contents'}[0]{'args'}[1]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[6]{'extra'}{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[6]{'args'}[0]{'contents'}[0];
+$result_trees{'node_footnote_use_node_separate'}{'contents'}[6]{'extra'}{'nodes_manuals'}[0]{'node_content'}[0]
 = 
$result_trees{'node_footnote_use_node_separate'}{'contents'}[6]{'args'}[0]{'contents'}[0];
+
+$result_texis{'node_footnote_use_node_separate'} = '\\input texinfo @c 
-*-texinfo-*-
+
+@c test footnotes with nodes only
+
+@node Top
+
+@menu
+* @\'a::
+* @^a::
+* chapter::
+* @`a::
+@end menu
+
+@node @\'a
+
+node @\'a,
+Footnote 1@footnote{foot 1 @\'a}.
+
+@node @^a
+
+node @^a,
+Footnote 2@footnote{foot 2 @^a}.
+
+@node chapter
+@chapter chapter
+
+@menu
+* @`a::
+@end menu
+
+@node @`a
+
+node @`a,
+Footnote 3@footnote{foot 3 @`a}.
+
+@bye
+';
+
+
+$result_texts{'node_footnote_use_node_separate'} = '
+
+* a\'::
+* a^::
+* chapter::
+* a`::
+
+
+node a\',
+Footnote 1.
+
+
+node a^,
+Footnote 2.
+
+1 chapter
+*********
+
+* a`::
+
+
+node a`,
+Footnote 3.
+
+';
+
+$result_sectioning{'node_footnote_use_node_separate'} = {
+  'structure' => {
+    'section_childs' => [
+      {
+        'cmdname' => 'chapter',
+        'extra' => {
+          'associated_node' => {
+            'cmdname' => 'node',
+            'extra' => {
+              'normalized' => 'chapter'
+            },
+            'info' => {},
+            'structure' => {}
+          }
+        },
+        'info' => {},
+        'structure' => {
+          'section_level' => 1,
+          'section_number' => 1,
+          'section_up' => {}
+        }
+      }
+    ],
+    'section_level' => 0
+  }
+};
+$result_sectioning{'node_footnote_use_node_separate'}{'structure'}{'section_childs'}[0]{'structure'}{'section_up'}
 = $result_sectioning{'node_footnote_use_node_separate'};
+
+$result_nodes{'node_footnote_use_node_separate'} = {
+  'cmdname' => 'node',
+  'extra' => {
+    'menus' => [
+      {
+        'cmdname' => 'menu'
+      }
+    ],
+    'normalized' => 'Top'
+  },
+  'info' => {},
+  'structure' => {
+    'menu_child' => {
+      'cmdname' => 'node',
+      'extra' => {
+        'normalized' => '_00e1'
+      },
+      'info' => {},
+      'structure' => {
+        'node_next' => {
+          'cmdname' => 'node',
+          'extra' => {
+            'normalized' => '_00e2'
+          },
+          'info' => {},
+          'structure' => {
+            'node_next' => {
+              'cmdname' => 'node',
+              'extra' => {
+                'associated_section' => {
+                  'cmdname' => 'chapter',
+                  'extra' => {},
+                  'info' => {},
+                  'structure' => {
+                    'section_number' => 1
+                  }
+                },
+                'menus' => [
+                  {
+                    'cmdname' => 'menu'
+                  }
+                ],
+                'normalized' => 'chapter'
+              },
+              'info' => {},
+              'structure' => {
+                'menu_child' => {
+                  'cmdname' => 'node',
+                  'extra' => {
+                    'normalized' => '_00e0'
+                  },
+                  'info' => {},
+                  'structure' => {
+                    'node_prev' => {},
+                    'node_up' => {}
+                  }
+                },
+                'node_next' => {},
+                'node_prev' => {},
+                'node_up' => {}
+              }
+            },
+            'node_prev' => {},
+            'node_up' => {}
+          }
+        },
+        'node_prev' => {},
+        'node_up' => {}
+      }
+    },
+    'node_next' => {}
+  }
+};
+$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'node_next'}{'structure'}{'node_next'}{'structure'}{'menu_child'}{'structure'}{'node_prev'}
 = 
$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'node_next'}{'structure'}{'node_next'};
+$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'node_next'}{'structure'}{'node_next'}{'structure'}{'menu_child'}{'structure'}{'node_up'}
 = 
$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'node_next'}{'structure'}{'node_next'};
+$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'node_next'}{'structure'}{'node_next'}{'structure'}{'node_next'}
 = 
$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'node_next'}{'structure'}{'node_next'}{'structure'}{'menu_child'};
+$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'node_next'}{'structure'}{'node_next'}{'structure'}{'node_prev'}
 = 
$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'node_next'};
+$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'node_next'}{'structure'}{'node_next'}{'structure'}{'node_up'}
 = $result_nodes{'node_footnote_use_node_separate'};
+$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'node_next'}{'structure'}{'node_prev'}
 = $result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'};
+$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'node_next'}{'structure'}{'node_up'}
 = $result_nodes{'node_footnote_use_node_separate'};
+$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'node_prev'}
 = $result_nodes{'node_footnote_use_node_separate'};
+$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'node_up'}
 = $result_nodes{'node_footnote_use_node_separate'};
+$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'node_next'} = 
$result_nodes{'node_footnote_use_node_separate'}{'structure'}{'menu_child'};
+
+$result_menus{'node_footnote_use_node_separate'} = {
+  'cmdname' => 'node',
+  'extra' => {
+    'normalized' => 'Top'
+  },
+  'info' => {},
+  'structure' => {
+    'menu_child' => {
+      'cmdname' => 'node',
+      'extra' => {
+        'normalized' => '_00e1'
+      },
+      'info' => {},
+      'structure' => {
+        'menu_next' => {
+          'cmdname' => 'node',
+          'extra' => {
+            'normalized' => '_00e2'
+          },
+          'info' => {},
+          'structure' => {
+            'menu_next' => {
+              'cmdname' => 'node',
+              'extra' => {
+                'normalized' => 'chapter'
+              },
+              'info' => {},
+              'structure' => {
+                'menu_child' => {
+                  'cmdname' => 'node',
+                  'extra' => {
+                    'normalized' => '_00e0'
+                  },
+                  'info' => {},
+                  'structure' => {
+                    'menu_prev' => {},
+                    'menu_up' => {},
+                    'menu_up_hash' => {
+                      'Top' => 1,
+                      'chapter' => 1
+                    }
+                  }
+                },
+                'menu_next' => {},
+                'menu_prev' => {},
+                'menu_up' => {},
+                'menu_up_hash' => {
+                  'Top' => 1
+                }
+              }
+            },
+            'menu_prev' => {},
+            'menu_up' => {},
+            'menu_up_hash' => {
+              'Top' => 1
+            }
+          }
+        },
+        'menu_up' => {},
+        'menu_up_hash' => {
+          'Top' => 1
+        }
+      }
+    }
+  }
+};
+$result_menus{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'menu_next'}{'structure'}{'menu_next'}{'structure'}{'menu_child'}{'structure'}{'menu_prev'}
 = 
$result_menus{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'menu_next'}{'structure'}{'menu_next'};
+$result_menus{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'menu_next'}{'structure'}{'menu_next'}{'structure'}{'menu_child'}{'structure'}{'menu_up'}
 = 
$result_menus{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'menu_next'}{'structure'}{'menu_next'};
+$result_menus{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'menu_next'}{'structure'}{'menu_next'}{'structure'}{'menu_next'}
 = 
$result_menus{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'menu_next'}{'structure'}{'menu_next'}{'structure'}{'menu_child'};
+$result_menus{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'menu_next'}{'structure'}{'menu_next'}{'structure'}{'menu_prev'}
 = 
$result_menus{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'menu_next'};
+$result_menus{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'menu_next'}{'structure'}{'menu_next'}{'structure'}{'menu_up'}
 = $result_menus{'node_footnote_use_node_separate'};
+$result_menus{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'menu_next'}{'structure'}{'menu_prev'}
 = $result_menus{'node_footnote_use_node_separate'}{'structure'}{'menu_child'};
+$result_menus{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'menu_next'}{'structure'}{'menu_up'}
 = $result_menus{'node_footnote_use_node_separate'};
+$result_menus{'node_footnote_use_node_separate'}{'structure'}{'menu_child'}{'structure'}{'menu_up'}
 = $result_menus{'node_footnote_use_node_separate'};
+
+$result_errors{'node_footnote_use_node_separate'} = [];
+
+
+$result_floats{'node_footnote_use_node_separate'} = {};
+
+
+$result_converted_errors{'file_html'}->{'node_footnote_use_node_separate'} = [
+  {
+    'error_line' => 'warning: must specify a title with a title command or @top
+',
+    'file_name' => 'node_footnote.texi',
+    'text' => 'must specify a title with a title command or @top',
+    'type' => 'warning'
+  }
+];
+
+
+1;
diff --git 
a/tp/t/results/moresectioning/node_footnote_use_node_separate/res_html/a.html 
b/tp/t/results/moresectioning/node_footnote_use_node_separate/res_html/a.html
new file mode 100644
index 0000000000..8684cc571d
--- /dev/null
+++ 
b/tp/t/results/moresectioning/node_footnote_use_node_separate/res_html/a.html
@@ -0,0 +1,57 @@
+<!DOCTYPE html>
+<html>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<title>&aacute; (Untitled Document)</title>
+
+<meta name="description" content="&aacute; (Untitled Document)">
+<meta name="keywords" content="&aacute; (Untitled Document)">
+<meta name="resource-type" content="document">
+<meta name="distribution" content="global">
+<meta name="viewport" content="width=device-width,initial-scale=1">
+
+<link href="index.html" rel="start" title="Top">
+<link href="index.html" rel="up" title="Top">
+<link href="#g_t_00e2" rel="next" title="&acirc;">
+<link href="index.html" rel="prev" title="Top">
+
+
+</head>
+
+<body lang="en">
+<a class="node-id" id="g_t_00e1"></a><div class="nav-panel">
+<p>
+Next: <a href="#g_t_00e2" accesskey="n" rel="next">&acirc;</a>, Previous: <a 
href="index.html" accesskey="p" rel="prev">Top</a>, Up: <a href="index.html" 
accesskey="u" rel="up">Top</a> &nbsp; </p>
+</div>
+<hr>
+<h4 class="node">&aacute;</h4>
+
+<p>node &aacute;,
+Footnote 1<a class="footnote" id="DOCF1" 
href="node_footnote_fot.html#FOOT1"><sup>1</sup></a>.
+</p>
+<hr>
+<a class="node-id" id="g_t_00e2"></a><div class="nav-panel">
+<p>
+Next: <a href="chapter.html" accesskey="n" rel="next">chapter</a>, Previous: 
<a href="#g_t_00e1" accesskey="p" rel="prev">&aacute;</a>, Up: <a 
href="index.html" accesskey="u" rel="up">Top</a> &nbsp; </p>
+</div>
+<h4 class="node">&acirc;</h4>
+
+<p>node &acirc;,
+Footnote 2<a class="footnote" id="DOCF2" 
href="node_footnote_fot.html#FOOT2"><sup>2</sup></a>.
+</p>
+<hr>
+<a class="node-id" id="g_t_00e0"></a><div class="nav-panel">
+<p>
+Previous: <a href="chapter.html" accesskey="p" rel="prev">chapter</a>, Up: <a 
href="chapter.html" accesskey="u" rel="up">chapter</a> &nbsp; </p>
+</div>
+<h4 class="node">&agrave;</h4>
+
+<p>node &agrave;,
+Footnote 3<a class="footnote" id="DOCF3" 
href="node_footnote_fot.html#FOOT3"><sup>3</sup></a>.
+</p>
+
+
+
+</body>
+</html>
diff --git 
a/tp/t/results/moresectioning/node_footnote_use_node_separate/res_html/chapter.html
 
b/tp/t/results/moresectioning/node_footnote_use_node_separate/res_html/chapter.html
new file mode 100644
index 0000000000..4bbb87bb5e
--- /dev/null
+++ 
b/tp/t/results/moresectioning/node_footnote_use_node_separate/res_html/chapter.html
@@ -0,0 +1,47 @@
+<!DOCTYPE html>
+<html>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<title>chapter (Untitled Document)</title>
+
+<meta name="description" content="chapter (Untitled Document)">
+<meta name="keywords" content="chapter (Untitled Document)">
+<meta name="resource-type" content="document">
+<meta name="distribution" content="global">
+<meta name="viewport" content="width=device-width,initial-scale=1">
+
+<link href="index.html" rel="start" title="Top">
+<link href="index.html" rel="up" title="Top">
+<link href="a.html#g_t_00e0" rel="next" title="&agrave;">
+<link href="a.html#g_t_00e2" rel="prev" title="&acirc;">
+<style type="text/css">
+<!--
+td.menu-entry-description {vertical-align: top}
+td.menu-entry-destination {vertical-align: top}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+<div class="chapter-level-extent" id="chapter">
+<div class="nav-panel">
+<p>
+Next: <a href="a.html#g_t_00e0" accesskey="n" rel="next">&agrave;</a>, 
Previous: <a href="a.html#g_t_00e2" accesskey="p" rel="prev">&acirc;</a>, Up: 
<a href="index.html" accesskey="u" rel="up">Top</a> &nbsp; </p>
+</div>
+<hr>
+<h2 class="chapter" id="chapter-1">1 chapter</h2>
+
+<table class="menu" border="0" cellspacing="0">
+<tr><td class="menu-entry-destination">&bull; <a href="a.html#g_t_00e0" 
accesskey="1">&agrave;</a>:</td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
+</td></tr>
+</table>
+
+</div>
+
+
+
+</body>
+</html>
diff --git 
a/tp/t/results/moresectioning/node_footnote_use_node_separate/res_html/index.html
 
b/tp/t/results/moresectioning/node_footnote_use_node_separate/res_html/index.html
new file mode 100644
index 0000000000..0725c8c1f8
--- /dev/null
+++ 
b/tp/t/results/moresectioning/node_footnote_use_node_separate/res_html/index.html
@@ -0,0 +1,55 @@
+<!DOCTYPE html>
+<html>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<title>Top (Untitled Document)</title>
+
+<meta name="description" content="Top (Untitled Document)">
+<meta name="keywords" content="Top (Untitled Document)">
+<meta name="resource-type" content="document">
+<meta name="distribution" content="global">
+<meta name="viewport" content="width=device-width,initial-scale=1">
+
+<link href="#Top" rel="start" title="Top">
+<link href="a.html#g_t_00e1" rel="next" title="&aacute;">
+<style type="text/css">
+<!--
+td.menu-entry-description {vertical-align: top}
+td.menu-entry-destination {vertical-align: top}
+-->
+</style>
+
+
+</head>
+
+<body lang="en">
+
+<a class="node-id" id="Top"></a><div class="nav-panel">
+<p>
+Next: <a href="a.html#g_t_00e1" accesskey="n" rel="next">&aacute;</a> &nbsp; 
</p>
+</div>
+<hr>
+<h1 class="node">Top</h1>
+
+<table class="menu" border="0" cellspacing="0">
+<tr><td class="menu-entry-destination">&bull; <a href="a.html#g_t_00e1" 
accesskey="1">&aacute;</a>:</td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
+</td></tr>
+<tr><td class="menu-entry-destination">&bull; <a href="a.html#g_t_00e2" 
accesskey="2">&acirc;</a>:</td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
+</td></tr>
+<tr><td class="menu-entry-destination">&bull; <a href="chapter.html" 
accesskey="3">chapter</a>:</td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
+</td></tr>
+<tr><td class="menu-entry-destination">&bull; <a href="a.html#g_t_00e0" 
accesskey="4">&agrave;</a>:</td><td>&nbsp;&nbsp;</td><td 
class="menu-entry-description">
+</td></tr>
+</table>
+
+<hr>
+<div class="nav-panel">
+<p>
+Next: <a href="a.html#g_t_00e1" accesskey="n" rel="next">&aacute;</a> &nbsp; 
</p>
+</div>
+
+
+
+</body>
+</html>
diff --git 
a/tp/t/results/moresectioning/node_footnote_use_node_separate/res_html/node_footnote_fot.html
 
b/tp/t/results/moresectioning/node_footnote_use_node_separate/res_html/node_footnote_fot.html
new file mode 100644
index 0000000000..d1ab14cb73
--- /dev/null
+++ 
b/tp/t/results/moresectioning/node_footnote_use_node_separate/res_html/node_footnote_fot.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html>
+<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<title>Footnotes (Untitled Document)</title>
+
+<meta name="description" content="Footnotes (Untitled Document)">
+<meta name="keywords" content="Footnotes (Untitled Document)">
+<meta name="resource-type" content="document">
+<meta name="distribution" content="global">
+<meta name="viewport" content="width=device-width,initial-scale=1">
+
+<link href="index.html" rel="start" title="Top">
+
+
+</head>
+
+<body lang="en">
+<div class="element-footnotes" id="SEC_Footnotes">
+<div class="nav-panel">
+<p>
+ &nbsp; </p>
+</div>
+<hr>
+<h4 class="footnotes-heading">Footnotes</h4>
+
+<h5 class="footnote-body-heading"><a id="FOOT1" 
href="a.html#DOCF1">(1)</a></h5>
+<p>foot 1 &aacute;</p>
+<h5 class="footnote-body-heading"><a id="FOOT2" 
href="a.html#DOCF2">(2)</a></h5>
+<p>foot 2 &acirc;</p>
+<h5 class="footnote-body-heading"><a id="FOOT3" 
href="a.html#DOCF3">(3)</a></h5>
+<p>foot 3 &agrave;</p>
+</div><hr>
+<div class="nav-panel">
+<p>
+ &nbsp; </p>
+</div>
+
+
+
+</body>
+</html>



reply via email to

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