summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-11-30 14:16:23 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-11-30 14:16:23 (GMT)
commit17b8d11c630ceef93b8ba535cc6964a7cfc495e9 (patch)
tree6852a9bbc24ccb87ab0d8ccd019c39d2d7908844 /tools
parentdd644024fb492717f548ec2eea456b5d3683da26 (diff)
downloadtcl-17b8d11c630ceef93b8ba535cc6964a7cfc495e9.zip
tcl-17b8d11c630ceef93b8ba535cc6964a7cfc495e9.tar.gz
tcl-17b8d11c630ceef93b8ba535cc6964a7cfc495e9.tar.bz2
doc update: 16-bit DOS appllications are not supported any more.
Use &amp;bull; in stead of &amp;#8226; representing bullets in html
Diffstat (limited to 'tools')
-rw-r--r--tools/tcltk-man2html-utils.tcl8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/tcltk-man2html-utils.tcl b/tools/tcltk-man2html-utils.tcl
index 5f8431b..34222e3 100644
--- a/tools/tcltk-man2html-utils.tcl
+++ b/tools/tcltk-man2html-utils.tcl
@@ -50,7 +50,7 @@ proc indexfile {} {
proc copyright {copyright {level {}}} {
# We don't actually generate a separate copyright page anymore
#set page "${level}copyright.htm"
- #return "<A HREF=\"$page\">Copyright</A> &#169; [htmlize-text [lrange $copyright 2 end]]"
+ #return "<A HREF=\"$page\">Copyright</A> &copy; [htmlize-text [lrange $copyright 2 end]]"
# obfuscate any email addresses that may appear in name
set who [string map {@ (at)} [lrange $copyright 2 end]]
return "Copyright &copy; [htmlize-text $who]"
@@ -199,7 +199,7 @@ proc process-text {text} {
{\(eu} "&euro;" \
{\fP} {\fR} \
{\.} . \
- {\(bu} "&#8226;" \
+ {\(bu} "&bull;" \
{\*(qo} "&ocirc;" \
]
# This might make a few invalid mappings, but we don't use them
@@ -573,7 +573,7 @@ proc output-IP-list {context code rest} {
if {[regexp {^\[[\da-f]+\]|\(?[\da-f]+\)$} $rest]} {
set dl "<OL class=\"[string tolower $manual(section)]\">"
set enddl "</OL>"
- } elseif {"&#8226;" eq $rest} {
+ } elseif {"&bull;" eq $rest} {
set dl "<UL class=\"[string tolower $manual(section)]\">"
set enddl "</UL>"
}
@@ -599,7 +599,7 @@ proc output-IP-list {context code rest} {
man-puts "$para<LI value=\"$value\">"
} elseif {[regexp {^\(?([\da-f]+)\)$} $rest -> value]} {
man-puts "$para<LI value=\"$value\">"
- } elseif {"&#8226;" eq $rest} {
+ } elseif {"&bull;" eq $rest} {
man-puts "$para<LI>"
} else {
man-puts "$para<DT>[long-toc $rest]<DD>"