wevm/vocs

Escaping $ in code blocks

stephancill opened this issue · 3 comments

When rendering a code block with

`https://${process.env.VERCEL_URL}`

The $ is not rendered, how can I fix this?

Interesting thing is that when you put a space between / and $ (https:// ${process.env.VERCEL_URL}), it renders $:

`https:// ${process.env.VERCEL_URL}`

it seems that // is escaping $

Adding second $ fixes the issue.