util_maybe_convert_to_html

one of the documented procedures in this installation of the ACS
Usage:
util_maybe_convert_to_html   raw_string   html_p
What it does:
very useful for info pulled from the news, neighbor, events subsystems.
Defined in: /web/philip/packages/acs-core/utilities-procs.tcl

Source code:


    if { $html_p == "t" } {
	return $raw_string
    } else {
	return [util_convert_plaintext_to_html $raw_string]
    }


philg@mit.edu