Remove legacy Banzai filters
While we transition to the Rust markdown parser and GLFM Markdown, several filters are no longer needed. For example the BlockquoteFenceFilter
or the DollarMathPostFilter
.
We consider these legacy filters, and keep them around to
- provide a way to benchmark the old markdown engine (and it's legacy filters) against the new engine and filters
- provide a fallback in some unforeseen scenario
These filters only get run when MarkdownFilter.glfm_markdown?(context) == false
At some point we can remove this legacy code. We will place TODO
tags in the code pointing to this issue so they are more easily found.
Edited by Brett Walker