```py >>> markdownify('text<text>') 'text<text>' ``` In at least some flavours of Markdown, this would need to be `text\<text\>` instead. As an example, GitHub-flavoured Markdown gives text<text> and text\<text\> without and with backslashes respectively.