Clarify when parameters should be wrapped in escaped quotes. #60
rayruizhiliao
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Inside a string (substring interpolation)
Parameters must always be escaped with quotes, regardless of underlying type.
Example:
"name=\"{{param}}\""(even ifparamis a number)Entire value (standalone)
Parameters must always be escaped with quotes if the parameter type is a string.
Examples:
"\"{{string_param}}\""✅"{{string_param}}"❌Beta Was this translation helpful? Give feedback.
All reactions