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
Wrap response text in a <speak> tag by default. This means that there will be no need to designate SSML usage: it'll 'just work':
<speak>
respond("Hi there") # => "<speak>Hi there</speak>" respond("<say-as interpret-as="spell-out">hello</say-as>") # => "<speak><say-as="spell-out">hello</say-as></speak>"
If the user writes SSML with <speak> tags, strip them out, as nested <speak> tags break Alexa.
The text was updated successfully, but these errors were encountered:
This also means we can remove any references to ssml: true, which removes a parameter from respond (thank goodness)
ssml: true
respond
Sorry, something went wrong.
No branches or pull requests
Wrap response text in a
<speak>
tag by default. This means that there will be no need to designate SSML usage: it'll 'just work':The text was updated successfully, but these errors were encountered: