I'm trying to represent a short inline span of code with a significant space or two at the end, using Markdown. If I were to put it in a stand-alone code block, it might look like this:
cd
Frustratingly, Markdown transforms `cd `
into <code>cd</code>
, deleting the space at the end. How can I do it?
I don't believe markdown has anything for that specifically but if you use
it will add a non breaking space. In your case replacewith
and it should work as intended.