summaryrefslogtreecommitdiffstats
path: root/Doc/.latex2html-init
Commit message (Collapse)AuthorAgeFilesLines
* Override several functions from the stock latex2html to support the moduleFred Drake1998-01-131-0/+95
| | | | | | | | | index. It works, it's ugly, and would probably have to be completely redone if we changed latex2html versions. See the comments. ;-( On the other hand, it works. ;-) (Wait for myformat.perl checkin as well.)
* Consistency: Always use lower-case markup; one tag was still given inFred Drake1998-01-091-1/+1
| | | | | uppercase. (Makes it easier to see what markup is generated by the Python manual support and what is generated by standard latex2html.)
* img_tag(), top_navigation_panel(): Generate markup the same case as otherFred Drake1997-12-181-7/+7
| | | | functions in this file.
* gen_index_id(): New function. Construct an index key such that the sortFred Drake1997-12-171-18/+30
| | | | | | | | | | | | | | | | | | | | is stable and the form is only defined in one place, since we do some fancy footwork with the keys to separate the defining instance of a module reference from other references in the HTML index. make_index_entry(): Override the standard definition to use get_index_id(). make_str_index_entry(): Moved to myformat.perl; only needed there. index_key_eq(): Override the standard definition. Add key transforms to remove extra junk from the end of the keys; it was only there to maintain ordering. clean_key(): Remove key transform no longer needed at this stage, because keeping it makes the sort unstable. add_idx(): Add key transforms to undo the mess we do to separate a module's defining and reference entries. Don't make the text bold.
* add_idx(): Don't add unnecessary markup around the little markers stuck in theFred Drake1997-12-111-27/+27
| | | | index to cross-references; an image doesn't benefit by being bold!
* Added Emacs turd so this file has the correct mode in Emacs / X/Emacs.Fred Drake1997-12-081-1/+12
| | | | | | | clean_key(): Override the standard LaTeX2HTML clean_key() to remove a leading HTML tag, if present. This broke the indexes for the library reference (at least) since many of the strings began with <code> or something similar.
* make_str_index_entry(): New function. Similar to make_index_entry(), butFred Drake1997-12-031-0/+101
| | | | | | | | | includes the string in the returned value instead of the dummy filler character. add_idx(): Override the latex2html function of the same name; this gets the anchor properly embedded in the <dt> element, so the index works in Grail too.
* (.latex2html-init): Restore one setting to the default (no real need toFred Drake1996-12-061-2/+2
| | | | change it), and correct a typo in a comment.
* (.latex2html-init): Perform some limited setup for the reference manuals;Fred Drake1996-11-111-0/+98
some defaults are set here, but mostly this allows the "\," command to be used the way it is in the Python documentation. All future documentation should probably be written with only "," in the argument lists and not "\,".