i tried to read HTML using NSAttributeString. but it gets incorrect result when i put table in li
<ol>
<li>first
<table>
<tbody>
<tr>
<td>hello</td>
<td>: </td>
<td>world</td>
</tr>
</tbody>
</table>
</li>
<li>second</li>
</ol>
and it becomes like this
i have used the other extension but it still doesn't work.
ex: Convert HTML to NSAttributedString in iOS
is it bug from swift? and if it's a bug is there any solution?