I'm trying to convert MD to HTML:
$markdownProcessor = new Markdown();
$markdownProcessor->setContent($markdown);
$bodyHtml = $markdownProcessor->getHtml();
My markdown contains:

It sends the text through as-is, but it changes < to < and > to >
I'm trying to convert MD to HTML:
$markdownProcessor = new Markdown();
$markdownProcessor->setContent($markdown);
$bodyHtml = $markdownProcessor->getHtml();
My markdown contains:
It sends the text through as-is, but it changes < to < and > to >