Angle brackets in markdowndown needs to be escaped
Posted by jpluimers on 2019/11/19
A few days after filing <path> disappears from "Preview" rendering and also from actual rendering (at least in issues), I realised that this is by intent: Markdown allows to [WayBack] inline html which means that code like below will be all treated as such:
<path> > <path> *<path>* **<path>** > *<path>* > **<path>**
The solution is to either escape or quote with back-ticks:
`<path>` > `<path>` *`<path>`* **`<path>`** > *`<path>`* > **`<path>`**
Since WordPress also is based on pseudo-HTML codes, it too needs escaping.
–jeroen






Leave a comment