Hello, I'm making an app in which I would like to ignore the default lexicon in the text-to-speech service.
Testing with the ssml tag <lexicon uri="string"/>, I was only able to add more items to the lexicon and not completely replace it with an empty one.
https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/speech-synthesis-markup?tabs=csharp
Also the <say-as interpret-as="characters"> does not accomplish what I'm after.
In a more detail, when I'm using the finnish voice "fi-FI-NooraNeural" and using the text-to-speech to read out "ma", it is spoken out as "maanantai" (monday). But I would like it to be read just as "ma" without the lexicon replacing the default abbreviations.
Is there a way to disable the lexicon or to completely override it? Either disabling the lexicon as a property or with some option in the ssml tag, both options would work.
Thanks!