HXINDEX(1) | HTML-XML-utils | HXINDEX(1) |
hxindex - insert an index into an HTML document
hxindex [-t] [-x] [-n|-N] [-f] [-r] [-c class[,class...]] [-b base] [-i indexdb] [-s template] [-u phrase] [-O element[,element...]] [-X element[,element...]] [--] [file-or-URL]
The hxindex looks for terms to be indexed in a document, collects them, turns them into target anchors and creates a sorted index as an HTML list, which is inserted at the place of a placeholder in the document. The resulting document is written to standard output.
The index is inserted at the place of a comment of the form
<!--index-->
or between two comments of the form
<!--begin-index--> ... <!--end-index-->
In the latter case, all existing content between the two comments is removed first.
Index terms are either elements of type <dfn> or elements with a class attribute of "index". (For backward compatibility, also class attributes "index-inst" and "index-def" are recognized.) <dfn> elements (and class "index-def") are considered more important than elements with class "index" and will appear in bold in the generated index.
The option -c adds additional classes, that are aliases for "index".
By default, the contents of the element are taken as the index term. Here are two examples of occurrences of the index term "shoe":
A <dfn>shoe</dfn> is a piece of clothing that... completed by a leather <span class="index">shoe</span>...
If the term to be indexed is not equal to the contents of the element, the title attribute can be used to give the correct term:
... <dfn title="shoe">Shoes</dfn> are pieces of clothing that... ... with two leather <span class="index" title="shoe">shoes</span>...
The title attribute must also be used when the index term is a subterm of another. Subterms appear indented in the index, under their head term. To define a subterm, use a title attribute with two exclamation marks ("!!") between the term and the subterm, like this:
<dfn title="shoe!!leather">...</dfn> <dfn title="shoe!!invention of">...</dfn> <em class="index" title="shoe!!protective!!steel nosed">...</em>
As the last example above shows, there can be multiple levels of sub-subterms.
The title attribute also allows multiple index terms to be associated with a single occurrence. The multiple terms are separated with a vertical bar ("|"). Compare the following examples with the ones above:
<dfn title="shoe|boot">...</dfn> <dfn title="shoe!!invention of|inventions!!shoe">...</dfn>
These two elements both insert two terms into the index. Note that the second example above combines subterms and multiple terms.
It is possible to run index on a file that already has an index. The old target anchors and the old index will be removed before being re-generated.
The following options are supported:
hxindex -i termdb -n -base myfile.html myfile.html
and the termdb already contains an entry for "foo" in in section "3.1" of a document called "file2.html" with title "The foos", then the generated index will contain an entry such as this:
foo, <a href="file2.html#foo"
title="The foos, section 3.1">3.1</a>
hxnum myfile.html | hxindex -n >mynewfile.html
term, <a href="#term" title="section 7.8">7.8</a>
hxindex -n -s 'chapter %s' hxindex -n -s 'part %s' hxindex -n -s 'hoofdstuk %s' -u 'zonder nummer'
<dfn>foo,</dfn>... <span class=index>foo</span>
hxindex will normally ignore the comma and treat them as the same term, but with -r, they are treated as different. This affects trailing commas (,), semicolons (;), colons (:), exclamations mark (!), question marks (?) and full stops (.). A final full stop is never ignored if there are two or more in the term, to protect abbreviations ("B.C.") and ellipsis ("more..."). This does not affect how the index term is printed (it is always printed as it appears in the text), only how it is compared to similar terms. (Mnemonic: "raw".)
hxindex -O span,i,em
means that hxindex will only look for class="index" (and other classes, according to -c) on the elements span, i and em. The argument of -O must be a comma-separated list of element names. Note that this does not affect the element dfn. It will always be indexed as a defining instance.
hxindex -X ul,ol
makes sure that ul and ol elements are not indexed, even if they have a class="index" attribute. This does not exclude their children from being indexed. E.g.,
<ul class=index>
<li class=index>foo
<li class=index>bar
<li>baz </ul>
will add foo and bar to the index, but not the whole content of the ul element (foo bar baz). If both -O and -X are given and an element occurs in both options, it will be excluded. E.g.,
hxindex -X p,h1,ul -O em,span,h1,h2
will cause hxindex to only look for class attributes on em, span and h2, because h1 is excluded.
The following operand is supported:
The following exit values are returned:
The input is assumed to be in UTF-8, but the current locale is used to determine the sorting order of the index terms. I.e., hxindex looks at the LANG, LC_ALL and/or LC_COLLATE environment variables. See locale(1).
To use a proxy to retrieve remote files, set the environment variables http_proxy or ftp_proxy. E.g., http_proxy="http://localhost:8080/"
Assumes UTF-8 as input. Doesn't expand character entities (apart from the standard ones: "&", "<", ">" and """). Instead, pipe the input through hxunent(1) and, if needed, asc2xml(1) to convert it to UTF-8.
Remote files (specified with a URL) are currently only supported for HTTP. Password-protected files or files that depend on HTTP "cookies" are not handled. (You can use tools such as curl(1) or wget(1) to retrieve such files.)
The accessibility of an index, even when generated with option -n, is poor.
asc2xml(1), hxnormalize(1), hxnum(1), hxprune(1), hxtoc(1), hxunent(1), xml2asc(1), locale(1), UTF-8 (RFC 2279)
10 Jul 2011 | 7.x |