summaryrefslogtreecommitdiffstats
path: root/Doc/.latex2html-init
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1997-12-18 14:16:46 (GMT)
committerFred Drake <fdrake@acm.org>1997-12-18 14:16:46 (GMT)
commit616b23b2e4d4a44b9652c625f3c61a2cf6f1b955 (patch)
treeb023679d6973df8a41c3fe7bf117531a676413a7 /Doc/.latex2html-init
parent8da9e6a8a093b46340d4849eb3be00afd95c0573 (diff)
downloadcpython-616b23b2e4d4a44b9652c625f3c61a2cf6f1b955.zip
cpython-616b23b2e4d4a44b9652c625f3c61a2cf6f1b955.tar.gz
cpython-616b23b2e4d4a44b9652c625f3c61a2cf6f1b955.tar.bz2
img_tag(), top_navigation_panel(): Generate markup the same case as other
functions in this file.
Diffstat (limited to 'Doc/.latex2html-init')
-rw-r--r--Doc/.latex2html-init14
1 files changed, 7 insertions, 7 deletions
diff --git a/Doc/.latex2html-init b/Doc/.latex2html-init
index 749e822..932fbf3 100644
--- a/Doc/.latex2html-init
+++ b/Doc/.latex2html-init
@@ -20,8 +20,8 @@ sub img_tag {
( ($icon =~ /(gif)/) ?
do {
$icon =~ /(up|next|previous|next_page|previous_page|change_begin|change_end|change_delete|contents|index)/;
- join('','<IMG ',$iconsizes{$1},' ALIGN=BOTTOM ALT="',$1,
- '" SRC="',$ICONSERVER,"/$icon",'" BORDER=0>')
+ join('','<img ',$iconsizes{$1},' align=bottom alt="',$1,
+ '" src="',$ICONSERVER,"/$icon",'" border=0>')
} :
$icon);
}
@@ -98,22 +98,22 @@ sub process_command {
sub top_navigation_panel {
# Now add a few buttons with a space between them
- "<DIV CLASS=navigation>\n" .
+ "<div class=navigation>\n" .
"$NEXT $UP $PREVIOUS $CONTENTS $INDEX $CUSTOM_BUTTONS" .
"<BR>\n" . # Line break
# If ``next'' section exists, add its title to the navigation panel
- ($NEXT_TITLE ? "<B> Next:</B> $NEXT_TITLE\n" : undef) .
+ ($NEXT_TITLE ? "<b> Next:</b> $NEXT_TITLE\n" : undef) .
# Similarly with the ``up'' title ...
- ($UP_TITLE ? "<B>Up:</B> $UP_TITLE\n" : undef) .
+ ($UP_TITLE ? "<b>Up:</b> $UP_TITLE\n" : undef) .
# ... and the ``previous'' title
- ($PREVIOUS_TITLE ? "<B> Previous:</B> $PREVIOUS_TITLE\n" : undef) .
+ ($PREVIOUS_TITLE ? "<b> Previous:</b> $PREVIOUS_TITLE\n" : undef) .
# Line Break, horizontal rule (3-d dividing line) and new paragraph
- "<BR><HR><P></DIV>\n"
+ "<br><hr><p></div>\n"
}
sub bot_navigation_panel {