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
Port this change from botbuilder-dotnet/master branch: microsoft/botbuilder-dotnet#3341
close: #3339
Originally, if you want to input '=' in the structure value, an escape should be added. like:
# welcome(name) [Activity text = hi, name \= @{name} ]
But now, we just treat the first equals mark as the key/value separator, so, we can write is as:
# welcome(name) [Activity text = hi, name = @{name} ]
there is no need to write the backslash.
The text was updated successfully, but these errors were encountered:
Danieladu
Successfully merging a pull request may close this issue.
close: #3339
Originally, if you want to input '=' in the structure value, an escape should be added. like:
But now, we just treat the first equals mark as the key/value separator, so, we can write is as:
there is no need to write the backslash.
Changed projects
The text was updated successfully, but these errors were encountered: