I have this code:
public static HashMap<String, List<String>> getInfo()
{
HashMap<String, List<String>> Conteudo = new HashMap<String, List<String>>();
List<String> Areas_Processos = new ArrayList<>();
Areas_Processos.add("<>start of bold directive<>"+"4 - text four"+"end of bold directive<>");
...
}
The output is <>start of bold directive<>4 - Text four <>end of bold directive<>
, showing the directives to format the texts.
My expectation is to have the text in bold format, like this: "4 - Text four"
Any ideas?