You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Without this batch the application doesn't handle li and ol where the html is inline:
```html
<ul><li>item1</li><li>item2</li></ul>
```
The returned format outputs above as:
```
* item1* item2
```
This patch allows for unformatted html lists to be displayed as proper markdown:
```
* item1
* item2
```
fixesneocotic#32
When list element tags are unformatted like the following:
The application returns:
It should return:
The text was updated successfully, but these errors were encountered: