var msg = new SpeechSynthesisUtterance();
msg.text = "ssml";
speechSynthesis.speak(msg);
It did not work. The voice attempted to narrate the XML tags.
Is this code valid? Do I have to provide an XMLDocument object instead?
var msg = new SpeechSynthesisUtterance();
msg.text = "ssml";
speechSynthesis.speak(msg);
It did not work. The voice attempted to narrate the XML tags.
Is this code valid? Do I have to provide an XMLDocument object instead?