I'm trying to print below line on html page:
List<Map<String,Object>> someVar = someMethod();
however, in html Map<String,Object>
is being treated as tag in html
Below is the output I'm getting:
List> someVar = someMethod();
everything else other than Map is being properly replaced by span tags
replace <
by <
and >
by >
List<Map<String,Object>> someVar = someMethod();