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
char
E.g. char.foo is undefined, so ${char.foo} in JS and {{char.foo}} in Markdown will output nothing. This is easy to miss.
char.foo
undefined
${char.foo}
{{char.foo}}
Let's modify char.js so that it throws an error if we try to use undefined characters. Can be done by using a JavaScript proxy.
char.js
The text was updated successfully, but these errors were encountered:
mtsknn
No branches or pull requests
E.g.
char.foo
isundefined
, so${char.foo}
in JS and{{char.foo}}
in Markdown will output nothing. This is easy to miss.Let's modify
char.js
so that it throws an error if we try to use undefined characters. Can be done by using a JavaScript proxy.The text was updated successfully, but these errors were encountered: