Escaping $ in code blocks
stephancill opened this issue · 3 comments
stephancill commented
When rendering a code block with
`https://${process.env.VERCEL_URL}`
The $
is not rendered, how can I fix this?
michalkvasnicak commented
Interesting thing is that when you put a space between /
and $
(https:// ${process.env.VERCEL_URL}
), it renders $
:
`https:// ${process.env.VERCEL_URL}`
michalkvasnicak commented
it seems that //
is escaping $
michalkvasnicak commented
Adding second $
fixes the issue.