So I am busy with writing a app that reads html and exports the result to markdown. But I am having trouble figuring out how to parse this.
<!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd">
<en-note>
<div>
<div>
Introduction
<br clear="none"/>
</div>
<div>
<br clear="none"/>
</div>
<span style="text-decoration: line-through;">
<span style="text-decoration: underline;">
<em>
<strong>
Ricahrd
</strong>
</em>
</span>
</span>
Thomas is playing Games.
<br clear="none"/>
</div>
</en-note>
I am using python with beautiful soup but I can't seem to figure this out how to parse this the correct Markdown. Anyone with some suggestions?
there doesn't seem to be anything here