You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---title: Test pagedescription: Test page---
This is a var in an hcl block:
```hclprovider "teleport" { addr = '<Var name="teleport.example.com:443" />' join_method = '<Var name="token-join-method" />' join_token = "terraform_bot"}
The dev server renders the following:
The rehype-hljs-var plugin replaces Var tags with a placeholder string, applies syntax highlighting with hljs, then replaces the placeholder string with the original Var tags. In this case, the second replacement does not occur. Fix the plugin so it renders Var components correctly in HCL snippets.
The text was updated successfully, but these errors were encountered:
Given the following MDX page:
The dev server renders the following:
The
rehype-hljs-var
plugin replacesVar
tags with a placeholder string, applies syntax highlighting with hljs, then replaces the placeholder string with the originalVar
tags. In this case, the second replacement does not occur. Fix the plugin so it rendersVar
components correctly in HCL snippets.The text was updated successfully, but these errors were encountered: