I am trying to convert HTML string but it is giving me plain text. I need to convert to Jira markup which i can push to the description field of JIRA issue.
HTML String
`
String htmlString="<table style="width:100%">\r\n" +
" FirstnameLastnameAge\r\n" +
" JillSmith50\r\n" +
" EveJackson94\r\n" +
" JohnDoe80\r\n" +
"";
`
Output:
FirstnameLastnameth>AgeJillSmith50EveJackson94JohnDoe80
Expeted outout: somthing like that for table format
||Heading 1||Heading 2|| |Col A1|Col A1| |Col A1| Col A1| |Col A1| Col A1| |Col A1|Col A2|