Monday, November 08, 2010 at 12:06 AM.

system.verbs.builtins.tcp.im.builtinDrivers.aim.code.util.strip_html

on strip_html ( htmltext) {
	<<from string.htmlToEmail, cause I don't want to use regex.
	bundle { //strip all remaining markup
		local (ixopen, ixclose);
		loop {
			ixopen = string.patternmatch ("<", htmltext);
			if ixopen == 0 {
				break};
			ixclose = string.patternmatch (">", htmltext);
			if ixopen > ixclose {
				htmltext = string.delete (htmltext, ixclose, 1);
				continue};
			if ixclose == 0 {
				break};
			htmltext = string.delete (htmltext, ixopen, ixclose - ixopen + 1)}};
	return(htmltext)}



This listing is for code that runs in the OPML Editor environment. I created these listings because I wanted the search engines to index it, so that when I want to look up something in my codebase I don't have to use the much slower search functionality in my object database. Dave Winer.