On Wed, Aug 28, 2024 at 10:13:25AM +0200, Patrice Dumas wrote:
> Then you can select some directions only:
> texinfo_set_from_init_file(
> 'SECTION_BUTTONS',
> ['Up', \&_my_button_direction_section_href],
> #['Next', \&_my_button_direction_section_href],
> #['Prev', \&_my_button_direction_section_href],
> 'Top', 'Contents']);
Sorry, this part should have been
texinfo_set_from_init_file(
'SECTION_BUTTONS',
[['Up', \&_my_button_direction_section_href],
#['Next', \&_my_button_direction_section_href],
#['Prev', \&_my_button_direction_section_href],
'Top', 'Contents']);
--
Pat