bool possiblyWithHTMLTag(String? s) => s != null && s.contains('<') && s.contains(_regexpPossiblyHtmlTag);