vocs
vocs copied to clipboard
Escaping $ in code blocks
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.
Fixed on vocs@next