I've got the following Markdown code that gets parsed and displayed in HTML (the Markdown is being converted to HTML using RedCarpet):
curl https://api.example.com \
-u "<span class='api_key'></span>:"
And I want the <span class='api_key'></span>
to later be replaced with the acutal API key by Javascript.
The problem is that the code gets escaped (i.e. displayed as is), instead of getting evaluated.
The output of the previous code block is:
...
-u "<span class='api_key'></span>:"
.. instead of the expected:
...
-u ":"
How do I get around this?