We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When rendering a code block with
`https://${process.env.VERCEL_URL}`
The $ is not rendered, how can I fix this?
$
The text was updated successfully, but these errors were encountered:
Interesting thing is that when you put a space between / and $ (https:// ${process.env.VERCEL_URL}), it renders $:
/
https:// ${process.env.VERCEL_URL}
`https:// ${process.env.VERCEL_URL}`
Sorry, something went wrong.
it seems that // is escaping $
//
Adding second $ fixes the issue.
No branches or pull requests
When rendering a code block with
`https://${process.env.VERCEL_URL}`
The
$
is not rendered, how can I fix this?The text was updated successfully, but these errors were encountered: