util_striphtml

one of the documented procedures in this installation of the ACS
Usage:
util_striphtml   html
What it does:
Returns a best-guess plain text version of an HTML fragment. Better than ns_striphtml because it doesn't replace & g t ; and & l t ; with empty string.
Defined in: /web/philip/packages/acs-core/utilities-procs.tcl

Source code:


    return [util_expand_entities [util_remove_html_tags $html]]


philg@mit.edu