9.4.1.10 pre-release, HTML-to-Text/XML SPAN tag fix
Fixed HTML-to-XML/Text regarding SPAN tags and maintaining SPACE chars before and after the SPAN tags.
Fixed HTML-to-XML/Text regarding SPAN tags and maintaining SPACE chars before and after the SPAN tags.
Question: I instantiated the HtmlToXml component correctly but the DropTagType method did not drop the HTML tags as I expected: Htmltoxml.DropTagType(“span font p I”) Htmltoxml.DropTagType(“<span> <font> <p> <I>”) Answer: Call DropTagType once for each type of tag to be dropped (i.e. discarded) from the output. The tag string is case-insensitive: Htmltoxml.DropTagType(“span”) Htmltoxml.DropTagType(“i”) Htmltoxml.DropTagType(“p”) Htmltoxml.DropTagType(“font”)