<h1>Test</h1>
<h2>Test2</h2>
<h3>Test3</h3>
<ul>
<li>List1</li>
Gets converted to
Test
====
Test2
-----
### Test3
* List1
When it should be
# Test
## Test2
• List1
EDIT: Actually looking more into it it seems it's just using more uncommon ways of doing headers. Guess I didn't know about the alternate methods
<h1>Test</h1>
<h2>Test2</h2>
<h3>Test3</h3>
<ul>
</ul>Gets converted to
Test
====
Test2
-----
### Test3
* List1
When it should be
# Test
## Test2
### Test3
• List1
EDIT: Actually looking more into it it seems it's just using more uncommon ways of doing headers. Guess I didn't know about the alternate methods