Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

[PORT] [LG] treat everything after first '=' as value for the property #257

Closed
tomlm opened this issue Feb 5, 2020 · 0 comments
Closed

Comments

@tomlm
Copy link
Contributor

tomlm commented Feb 5, 2020

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.

Changed projects

  • Microsoft.Bot.Builder.LanguageGeneration
  • Microsoft.Bot.Builder.LanguageGeneration.Tests
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants