[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: texinfo-5.0.91 pretest available
From: |
Patrice Dumas |
Subject: |
Re: texinfo-5.0.91 pretest available |
Date: |
Sat, 9 Mar 2013 10:31:55 +0100 |
User-agent: |
Mutt/1.5.20 (2009-12-10) |
On Fri, Mar 08, 2013 at 11:35:27PM -0600, Joel Sherrill wrote:
> I tried this on the RTEMS documentation. (Thanks again).
>
> But in HTML from texi2any, there is a single colon
> which is not part of the hyperlink and really doesn't
> look right being there:
>
> =========================================
> 6 Task Manager
> • Task Manager Introduction:
> • Task Manager Background:
> • Task Manager Operations:
> • Task Manager Directives:
> =========================================
This is how makeinfo in C did it, so this is also the default texi2any
output. You can modify that by setting
-c MENU_ENTRY_COLON=
on the command line.
> In the HTML from texi2html, there is no colon:
>
> =========================================
> 6. Task Manager
> 6.1 Introduction
> 6.2 Background
> 6.3 Operations
> 6.4 Directives
> =========================================
> So the info looks right, the texi2any includes chapter names and a
> stray colon. texi2html produces clean output without chapter names
> on the sections.
It is the reverse, that is, texi2html uses section/chapter names for
menu entries, while texi2any/makeinfo in C uses node names. You can
change that by using
-c NODE_NAME_IN_MENU=0 -c USE_NODES=0
--
Pat