public string renderHtmlText(HtmlText txt) { string ret = ""; ret += txt.getText(); return ret; }
public StrTypePair renderHtmlText(HtmlText txt) { return new StrTypePair(txt.getText(), (_isAutoTag) ? StrTypePair.StrType.AUTO_TEXT : StrTypePair.StrType.USR_TEXT); }