[texi2any 6.8, 7.2]
Consider the following example file `menu.texinfo`.
```
\input texinfo
@node Top
@top Top
@menu
* Foo:: Foo foo foo.
* Bar:: Bar bar bar.
@end menu
@node Foo
@chapter Foo
Foo
@node Bar
@chapter Bar
Baz
@bye
```
If I process this with
```
texi2any --html -c FORMAT_MENU=menu menu.texinfo
```
I get this structure in `index.html`:
```
Next: Foo
-------------------------------
...
-------------------------------
Next: Foo
```
There is both a header and a footer navigation panel. However, the
files `Foo.html` and `Bar.html` look like the following:
```
Previous: Foo, Up: Top
-------------------------------
...
```
There is only a header but no footer navigation panel.
What must I do to always get a navigation panel in the footer (i.e.,
`NODE_FOOTER_BUTTONS`)?
Werner