speechmarkdown-rust 0.1.9__tar.gz → 0.1.12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/.github/workflows/publish.yml +6 -2
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/Cargo.toml +1 -1
- speechmarkdown_rust-0.1.12/PKG-INFO +139 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/dotnet/SpeechMarkdown.nuspec +1 -1
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/python/Cargo.lock +2 -2
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/python/Cargo.toml +2 -1
- speechmarkdown_rust-0.1.12/bindings/python/README.md +126 -0
- speechmarkdown_rust-0.1.12/bindings/python/dist/speechmarkdown_rust-0.1.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/pyproject.toml +2 -1
- speechmarkdown_rust-0.1.9/PKG-INFO +0 -10
- speechmarkdown_rust-0.1.9/bindings/python/dist/speechmarkdown_rust-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/.github/workflows/ci.yml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/.gitignore +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/.gitmodules +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/README.md +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/dotnet/SpeechMarkdown.cs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/dotnet/SpeechMarkdown.targets +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/python/speechmarkdown.pyi +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/python/src/lib.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/speechmarkdown.h +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/swift/Example.swift +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/swift/Package.swift +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/swift/Sources/CSpeechMarkdown/module.modulemap +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/swift/Sources/CSpeechMarkdown/shim.h +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/swift/Sources/CSpeechMarkdown/speechmarkdown.h +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/swift/SpeechMarkdown.swift +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/swift/module.modulemap +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/build.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/cbindgen.toml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/ast.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/error.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/ffi.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/formatters/base.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/formatters/mod.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/formatters/ssml/amazon_alexa.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/formatters/ssml/base.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/formatters/ssml/google_assistant.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/formatters/ssml/microsoft_azure.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/formatters/ssml/mod.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/formatters/text.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/grammar.pest +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/lib.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/parser/mod.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/parser/parser.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/break_specific_test.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/debug_failures.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/diagnostic_test.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/ffi_test.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/integration_test.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/remaining_test.rs +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/CODE-OF-CONDUCT.md +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/CONTRIBUTING.md +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/LICENSE +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/LICENSE-SAMPLECODE +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/LICENSE-SUMMARY +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/README.md +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/address-standard/address-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/address-standard/address-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/address-standard/address-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/address-standard/address-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/address-standard/address-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/address-standard/address-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/address-standard/address-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/address-standard/address-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/address-standard/address-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/address-standard/address-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/address-standard/address-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/address-standard/address-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard/audio-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard/audio-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard/audio-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard/audio-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard/audio-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard/audio-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard/audio-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard/audio-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard/audio-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard/audio-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard/audio-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard/audio-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-with-caption/audio-with-caption.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-with-caption/audio-with-caption.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/audio-with-caption/audio-with-caption.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-role-young-female/azure-role-young-female.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-role-young-female/azure-role-young-female.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-role-young-female/azure-role-young-female.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-section-angry/azure-section-angry.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-section-angry/azure-section-angry.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-section-angry/azure-section-angry.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-section-cheerful/azure-section-cheerful.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-section-cheerful/azure-section-cheerful.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-section-cheerful/azure-section-cheerful.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-section-friendly/azure-section-friendly.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-section-friendly/azure-section-friendly.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-section-friendly/azure-section-friendly.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-section-sad/azure-section-sad.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-section-sad/azure-section-sad.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-section-sad/azure-section-sad.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-advertisement_upbeat/azure-style-advertisement_upbeat.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-advertisement_upbeat/azure-style-advertisement_upbeat.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-affectionate/azure-style-affectionate.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-affectionate/azure-style-affectionate.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-angry/azure-style-angry.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-angry/azure-style-angry.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-angry/azure-style-angry.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-assistant/azure-style-assistant.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-assistant/azure-style-assistant.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-calm/azure-style-calm.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-calm/azure-style-calm.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-chat/azure-style-chat.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-chat/azure-style-chat.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-chat/azure-style-chat.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-cheerful/azure-style-cheerful.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-cheerful/azure-style-cheerful.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-cheerful/azure-style-cheerful.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-customerservice/azure-style-customerservice.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-customerservice/azure-style-customerservice.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-customerservice/azure-style-customerservice.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-depressed/azure-style-depressed.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-depressed/azure-style-depressed.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-disgruntled/azure-style-disgruntled.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-disgruntled/azure-style-disgruntled.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-documentary-narration/azure-style-documentary-narration.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-documentary-narration/azure-style-documentary-narration.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-embarrassed/azure-style-embarrassed.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-embarrassed/azure-style-embarrassed.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-empathetic/azure-style-empathetic.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-empathetic/azure-style-empathetic.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-envious/azure-style-envious.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-envious/azure-style-envious.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-excited/azure-style-excited.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-excited/azure-style-excited.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-excited/azure-style-excited.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-fearful/azure-style-fearful.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-fearful/azure-style-fearful.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-friendly/azure-style-friendly.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-friendly/azure-style-friendly.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-friendly/azure-style-friendly.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-gentle/azure-style-gentle.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-gentle/azure-style-gentle.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-hopeful/azure-style-hopeful.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-hopeful/azure-style-hopeful.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-lyrical/azure-style-lyrical.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-lyrical/azure-style-lyrical.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-narration-professional/azure-style-narration-professional.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-narration-professional/azure-style-narration-professional.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-narration-professional/azure-style-narration-professional.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-narration-relaxed/azure-style-narration-relaxed.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-narration-relaxed/azure-style-narration-relaxed.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-newscast-casual/azure-style-newscast-casual.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-newscast-casual/azure-style-newscast-casual.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-newscast-casual/azure-style-newscast-casual.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-newscast-formal/azure-style-newscast-formal.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-newscast-formal/azure-style-newscast-formal.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-newscaster/azure-style-newscaster.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-newscaster/azure-style-newscaster.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-newscaster/azure-style-newscaster.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-poetry-reading/azure-style-poetry-reading.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-poetry-reading/azure-style-poetry-reading.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-role-degree/azure-style-role-degree.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-role-degree/azure-style-role-degree.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-sad/azure-style-sad.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-sad/azure-style-sad.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-sad/azure-style-sad.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-serious/azure-style-serious.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-serious/azure-style-serious.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-shouting/azure-style-shouting.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-shouting/azure-style-shouting.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-sports_commentary/azure-style-sports_commentary.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-sports_commentary/azure-style-sports_commentary.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-sports_commentary_excited/azure-style-sports_commentary_excited.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-sports_commentary_excited/azure-style-sports_commentary_excited.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-terrified/azure-style-terrified.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-terrified/azure-style-terrified.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-unfriendly/azure-style-unfriendly.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-unfriendly/azure-style-unfriendly.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-whispering/azure-style-whispering.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-whispering/azure-style-whispering.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-with-degree/azure-style-with-degree.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-with-degree/azure-style-with-degree.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/azure-style-with-degree/azure-style-with-degree.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/bare-ipa/bare-ipa.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-short/break-short.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-strength/break-strength.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/break-time/break-time.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/cardinal-standard/cardinal-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/cardinal-standard/cardinal-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/cardinal-standard/cardinal-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/cardinal-standard/cardinal-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/cardinal-standard/cardinal-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/cardinal-standard/cardinal-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/cardinal-standard/cardinal-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/cardinal-standard/cardinal-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/cardinal-standard/cardinal-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/cardinal-standard/cardinal-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/cardinal-standard/cardinal-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/cardinal-standard/cardinal-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/cardinal-standard/cardinal-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/characters-standard/characters-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-break-emphasis/combo-break-emphasis.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-break-emphasis/combo-break-emphasis.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-break-emphasis/combo-break-emphasis.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-break-emphasis/combo-break-emphasis.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-break-emphasis/combo-break-emphasis.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-break-emphasis/combo-break-emphasis.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-whisper-emphasis/combo-whisper-emphasis.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-whisper-emphasis/combo-whisper-emphasis.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-whisper-emphasis/combo-whisper-emphasis.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-whisper-emphasis/combo-whisper-emphasis.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-whisper-emphasis/combo-whisper-emphasis.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/combo-whisper-emphasis/combo-whisper-emphasis.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/date-standard/date-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/date-standard/date-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/date-standard/date-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/date-standard/date-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/date-standard/date-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/date-standard/date-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/date-standard/date-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/date-standard/date-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/date-standard/date-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/date-standard/date-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/date-standard/date-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/date-standard/date-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/digits-standard/digits-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/digits-standard/digits-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/digits-standard/digits-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/digits-standard/digits-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/digits-standard/digits-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/digits-standard/digits-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/digits-standard/digits-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/digits-standard/digits-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/digits-standard/digits-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/digits-standard/digits-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/digits-standard/digits-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/digits-standard/digits-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/digits-standard/digits-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-section end speak tag at end/disappointed-section end speak tag at end.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-section end speak tag at end/disappointed-section end speak tag at end.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-section end speak tag at end/disappointed-section end speak tag at end.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-section end speak tag at end/disappointed-section end speak tag at end.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-section normal to disappointed intensities to normal/disappointed-section normal to disappointed intensities to normal.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-section normal to disappointed intensities to normal/disappointed-section normal to disappointed intensities to normal.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-section normal to disappointed intensities to normal/disappointed-section normal to disappointed intensities to normal.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-section normal to disappointed intensities to normal/disappointed-section normal to disappointed intensities to normal.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-section section on same line/disappointed-section section on same line.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-section section on same line/disappointed-section section on same line.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-section section on same line/disappointed-section section on same line.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-section section on same line/disappointed-section section on same line.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-standard/disappointed-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-standard/disappointed-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-standard/disappointed-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-standard/disappointed-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-standard invalid intensity/disappointed-standard invalid intensity.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-standard invalid intensity/disappointed-standard invalid intensity.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-standard invalid intensity/disappointed-standard invalid intensity.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-standard invalid intensity/disappointed-standard invalid intensity.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-standard non-lowercase intensity/disappointed-standard non-lowercase intensity.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-standard non-lowercase intensity/disappointed-standard non-lowercase intensity.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-standard non-lowercase intensity/disappointed-standard non-lowercase intensity.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/disappointed-standard non-lowercase intensity/disappointed-standard non-lowercase intensity.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/dj-section end speak tag at end/dj-section end speak tag at end.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/dj-section end speak tag at end/dj-section end speak tag at end.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/dj-section end speak tag at end/dj-section end speak tag at end.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/dj-section normal to dj to normal/dj-section normal to dj to normal.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/dj-section normal to dj to normal/dj-section normal to dj to normal.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/dj-section normal to dj to normal/dj-section normal to dj to normal.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/dj-section section on same line/dj-section section on same line.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/dj-section section on same line/dj-section section on same line.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/dj-section section on same line/dj-section section on same line.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/drc-standard/drc-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/drc-standard/drc-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/drc-standard/drc-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/drc-standard/drc-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-edge-date/emphasis-edge-date.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-edge-date/emphasis-edge-date.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-edge-date/emphasis-edge-date.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-edge-date/emphasis-edge-date.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-edge-date/emphasis-edge-date.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-edge-hyphenated/emphasis-edge-hyphenated.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-edge-hyphenated/emphasis-edge-hyphenated.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-edge-hyphenated/emphasis-edge-hyphenated.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-edge-hyphenated/emphasis-edge-hyphenated.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-edge-hyphenated/emphasis-edge-hyphenated.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-moderate/emphasis-short-moderate.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-moderate/emphasis-short-moderate.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-moderate/emphasis-short-moderate.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-moderate/emphasis-short-moderate.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-moderate/emphasis-short-moderate.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-moderate/emphasis-short-moderate.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-none/emphasis-short-none.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-none/emphasis-short-none.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-none/emphasis-short-none.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-none/emphasis-short-none.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-none/emphasis-short-none.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-none/emphasis-short-none.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-reduced/emphasis-short-reduced.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-reduced/emphasis-short-reduced.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-reduced/emphasis-short-reduced.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-reduced/emphasis-short-reduced.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-reduced/emphasis-short-reduced.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-reduced/emphasis-short-reduced.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-reduced should not interfere with hyphenated words/emphasis-short-reduced should not interfere with hyphenated words.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-reduced should not interfere with hyphenated words/emphasis-short-reduced should not interfere with hyphenated words.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-reduced should not interfere with hyphenated words/emphasis-short-reduced should not interfere with hyphenated words.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-reduced should not interfere with hyphenated words/emphasis-short-reduced should not interfere with hyphenated words.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-reduced should not interfere with hyphenated words/emphasis-short-reduced should not interfere with hyphenated words.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-reduced should not interfere with hyphenated words/emphasis-short-reduced should not interfere with hyphenated words.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-strong/emphasis-short-strong.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-strong/emphasis-short-strong.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-strong/emphasis-short-strong.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-strong/emphasis-short-strong.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-strong/emphasis-short-strong.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-short-strong/emphasis-short-strong.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-section end speak tag at end/excited-section end speak tag at end.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-section end speak tag at end/excited-section end speak tag at end.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-section end speak tag at end/excited-section end speak tag at end.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-section end speak tag at end/excited-section end speak tag at end.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-section normal to excited intensities to normal/excited-section normal to excited intensities to normal.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-section normal to excited intensities to normal/excited-section normal to excited intensities to normal.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-section normal to excited intensities to normal/excited-section normal to excited intensities to normal.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-section normal to excited intensities to normal/excited-section normal to excited intensities to normal.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-section section on same line/excited-section section on same line.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-section section on same line/excited-section section on same line.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-section section on same line/excited-section section on same line.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-section section on same line/excited-section section on same line.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-standard/excited-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-standard/excited-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-standard/excited-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-standard/excited-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-standard invalid intensity/excited-standard invalid intensity.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-standard invalid intensity/excited-standard invalid intensity.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-standard invalid intensity/excited-standard invalid intensity.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-standard invalid intensity/excited-standard invalid intensity.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-standard non-lowercase intensity/excited-standard non-lowercase intensity.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-standard non-lowercase intensity/excited-standard non-lowercase intensity.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-standard non-lowercase intensity/excited-standard non-lowercase intensity.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/excited-standard non-lowercase intensity/excited-standard non-lowercase intensity.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expletive-standard/expletive-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expletive-standard/expletive-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expletive-standard/expletive-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expletive-standard/expletive-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expletive-standard/expletive-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expletive-standard/expletive-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expletive-standard/expletive-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expletive-standard/expletive-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expletive-standard/expletive-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-ahem/expressive-ahem.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-ahem/expressive-ahem.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-ahem/expressive-ahem.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-ahem/expressive-ahem.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-applause/expressive-applause.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-applause/expressive-applause.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-applause/expressive-applause.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-applause/expressive-applause.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-bleh/expressive-bleh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-bleh/expressive-bleh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-bleh/expressive-bleh.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-bleh/expressive-bleh.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-boo/expressive-boo.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-boo/expressive-boo.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-boo/expressive-boo.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-boo/expressive-boo.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cheer/expressive-cheer.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cheer/expressive-cheer.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cheer/expressive-cheer.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cheer/expressive-cheer.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cheering/expressive-cheering.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cheering/expressive-cheering.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cheering/expressive-cheering.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cheering/expressive-cheering.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cough/expressive-cough.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cough/expressive-cough.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cough/expressive-cough.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cough/expressive-cough.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cry/expressive-cry.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cry/expressive-cry.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cry/expressive-cry.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-cry/expressive-cry.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-crying/expressive-crying.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-crying/expressive-crying.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-crying/expressive-crying.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-crying/expressive-crying.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-eek/expressive-eek.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-eek/expressive-eek.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-eek/expressive-eek.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-eek/expressive-eek.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-gasp/expressive-gasp.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-gasp/expressive-gasp.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-gasp/expressive-gasp.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-gasp/expressive-gasp.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-giggle/expressive-giggle.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-giggle/expressive-giggle.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-giggle/expressive-giggle.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-giggle/expressive-giggle.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-groan/expressive-groan.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-groan/expressive-groan.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-groan/expressive-groan.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-groan/expressive-groan.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-groaning/expressive-groaning.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-groaning/expressive-groaning.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-groaning/expressive-groaning.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-groaning/expressive-groaning.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hiccup/expressive-hiccup.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hiccup/expressive-hiccup.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hiccup/expressive-hiccup.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hiccup/expressive-hiccup.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hmm/expressive-hmm.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hmm/expressive-hmm.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hmm/expressive-hmm.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hmm/expressive-hmm.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-huh/expressive-huh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-huh/expressive-huh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-huh/expressive-huh.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-huh/expressive-huh.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hum/expressive-hum.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hum/expressive-hum.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hum/expressive-hum.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hum/expressive-hum.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hurray/expressive-hurray.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hurray/expressive-hurray.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hurray/expressive-hurray.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-hurray/expressive-hurray.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-laugh/expressive-laugh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-laugh/expressive-laugh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-laugh/expressive-laugh.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-laugh/expressive-laugh.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-laughter/expressive-laughter.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-laughter/expressive-laughter.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-laughter/expressive-laughter.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-laughter/expressive-laughter.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-meh/expressive-meh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-meh/expressive-meh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-meh/expressive-meh.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-meh/expressive-meh.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-mhm/expressive-mhm.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-mhm/expressive-mhm.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-mhm/expressive-mhm.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-mhm/expressive-mhm.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-mm-hmm/expressive-mm-hmm.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-mm-hmm/expressive-mm-hmm.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-mm-hmm/expressive-mm-hmm.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-mm-hmm/expressive-mm-hmm.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-mmm/expressive-mmm.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-mmm/expressive-mmm.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-mmm/expressive-mmm.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-mmm/expressive-mmm.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-moan/expressive-moan.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-moan/expressive-moan.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-moan/expressive-moan.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-moan/expressive-moan.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-multiple/expressive-multiple.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-multiple/expressive-multiple.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-multiple/expressive-multiple.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-multiple/expressive-multiple.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-oh/expressive-oh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-oh/expressive-oh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-oh/expressive-oh.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-oh/expressive-oh.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-ooh/expressive-ooh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-ooh/expressive-ooh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-ooh/expressive-ooh.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-ooh/expressive-ooh.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-pant/expressive-pant.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-pant/expressive-pant.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-pant/expressive-pant.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-pant/expressive-pant.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-pfft/expressive-pfft.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-pfft/expressive-pfft.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-pfft/expressive-pfft.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-pfft/expressive-pfft.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-phew/expressive-phew.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-phew/expressive-phew.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-phew/expressive-phew.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-phew/expressive-phew.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-psst/expressive-psst.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-psst/expressive-psst.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-psst/expressive-psst.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-psst/expressive-psst.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-scream/expressive-scream.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-scream/expressive-scream.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-scream/expressive-scream.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-scream/expressive-scream.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-shh/expressive-shh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-shh/expressive-shh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-shh/expressive-shh.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-shh/expressive-shh.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-shush/expressive-shush.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-shush/expressive-shush.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-shush/expressive-shush.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-shush/expressive-shush.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-sigh/expressive-sigh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-sigh/expressive-sigh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-sigh/expressive-sigh.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-sigh/expressive-sigh.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-sneeze/expressive-sneeze.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-sneeze/expressive-sneeze.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-sneeze/expressive-sneeze.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-sneeze/expressive-sneeze.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-sniff/expressive-sniff.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-sniff/expressive-sniff.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-sniff/expressive-sniff.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-sniff/expressive-sniff.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-throat-clear/expressive-throat-clear.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-throat-clear/expressive-throat-clear.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-throat-clear/expressive-throat-clear.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-throat-clear/expressive-throat-clear.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-tsk/expressive-tsk.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-tsk/expressive-tsk.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-tsk/expressive-tsk.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-tsk/expressive-tsk.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-tsk-tsk/expressive-tsk-tsk.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-tsk-tsk/expressive-tsk-tsk.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-tsk-tsk/expressive-tsk-tsk.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-tsk-tsk/expressive-tsk-tsk.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-uh-huh/expressive-uh-huh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-uh-huh/expressive-uh-huh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-uh-huh/expressive-uh-huh.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-uh-huh/expressive-uh-huh.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-uh-oh/expressive-uh-oh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-uh-oh/expressive-uh-oh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-uh-oh/expressive-uh-oh.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-uh-oh/expressive-uh-oh.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-umph/expressive-umph.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-umph/expressive-umph.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-umph/expressive-umph.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-umph/expressive-umph.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-wheeze/expressive-wheeze.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-wheeze/expressive-wheeze.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-wheeze/expressive-wheeze.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-wheeze/expressive-wheeze.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-whew/expressive-whew.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-whew/expressive-whew.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-whew/expressive-whew.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-whew/expressive-whew.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-whimper/expressive-whimper.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-whimper/expressive-whimper.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-whimper/expressive-whimper.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-whimper/expressive-whimper.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-with-break/expressive-with-break.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-with-break/expressive-with-break.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-with-break/expressive-with-break.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-with-break/expressive-with-break.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-wow/expressive-wow.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-wow/expressive-wow.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-wow/expressive-wow.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-wow/expressive-wow.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-yawn/expressive-yawn.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-yawn/expressive-yawn.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-yawn/expressive-yawn.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-yawn/expressive-yawn.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-yay/expressive-yay.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-yay/expressive-yay.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-yay/expressive-yay.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-yay/expressive-yay.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-yeah/expressive-yeah.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-yeah/expressive-yeah.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-yeah/expressive-yeah.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/expressive-yeah/expressive-yeah.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard/fraction-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard/fraction-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard/fraction-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard/fraction-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard/fraction-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard/fraction-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard/fraction-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard/fraction-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard/fraction-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard/fraction-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard/fraction-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard/fraction-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard/fraction-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/google-style/google-style.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/google-style/google-style.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/google-style/google-style.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/interjection-standard/interjection-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/interjection-standard/interjection-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/interjection-standard/interjection-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/interjection-standard/interjection-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/interjection-standard/interjection-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/interjection-standard/interjection-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/interjection-standard/interjection-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-short/ipa-short.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard/ipa-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/lang-standard/lang-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/lang-standard/lang-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/lang-standard/lang-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/lang-standard/lang-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/lang-standard/lang-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/lang-standard/lang-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/lang-standard/lang-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/lang-standard/lang-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/lang-standard/lang-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/lang-standard/lang-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/lang-standard/lang-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/mark-standard/mark-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/mark-standard/mark-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/mark-standard/mark-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/mark-standard/mark-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/mark-standard/mark-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/mark-standard/mark-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/mark-standard/mark-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/mark-standard/mark-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/mark-standard/mark-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/mark-standard/mark-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars bracket special chars/modifier-text-allowed-chars bracket special chars.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/modifier-text-allowed-chars non-bracket special chars/modifier-text-allowed-chars non-bracket special chars.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section end speak tag at end/newscaster-section end speak tag at end.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section end speak tag at end/newscaster-section end speak tag at end.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section end speak tag at end/newscaster-section end speak tag at end.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section end speak tag at end/newscaster-section end speak tag at end.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section end speak tag at end/newscaster-section end speak tag at end.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section normal to dj to normal/newscaster-section normal to dj to normal.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section normal to dj to normal/newscaster-section normal to dj to normal.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section normal to dj to normal/newscaster-section normal to dj to normal.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section normal to dj to normal/newscaster-section normal to dj to normal.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section normal to dj to normal/newscaster-section normal to dj to normal.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section section on same line/newscaster-section section on same line.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section section on same line/newscaster-section section on same line.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section section on same line/newscaster-section section on same line.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section section on same line/newscaster-section section on same line.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/newscaster-section section on same line/newscaster-section section on same line.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-markdown/no-markdown.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/no-modifiers/no-modifiers.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/number-standard/number-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/number-standard/number-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/number-standard/number-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/number-standard/number-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/number-standard/number-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/number-standard/number-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/number-standard/number-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/number-standard/number-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/number-standard/number-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/number-standard/number-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/number-standard/number-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/number-standard/number-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/number-standard/number-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ordinal-standard/ordinal-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ordinal-standard/ordinal-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ordinal-standard/ordinal-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ordinal-standard/ordinal-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ordinal-standard/ordinal-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ordinal-standard/ordinal-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ordinal-standard/ordinal-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ordinal-standard/ordinal-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ordinal-standard/ordinal-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ordinal-standard/ordinal-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ordinal-standard/ordinal-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ordinal-standard/ordinal-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/ordinal-standard/ordinal-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers vol + pitch + rate defaults/prosody-multiple-modifiers vol + pitch + rate defaults.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers vol + pitch + rate defaults/prosody-multiple-modifiers vol + pitch + rate defaults.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers vol + pitch + rate defaults/prosody-multiple-modifiers vol + pitch + rate defaults.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers vol + pitch + rate defaults/prosody-multiple-modifiers vol + pitch + rate defaults.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers vol + pitch + rate defaults/prosody-multiple-modifiers vol + pitch + rate defaults.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers vol + pitch + rate defaults/prosody-multiple-modifiers vol + pitch + rate defaults.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers vol + pitch + rate defaults/prosody-multiple-modifiers vol + pitch + rate defaults.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers vol + pitch + rate defaults/prosody-multiple-modifiers vol + pitch + rate defaults.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers vol + pitch + rate defaults/prosody-multiple-modifiers vol + pitch + rate defaults.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers vol + pitch + rate defaults/prosody-multiple-modifiers vol + pitch + rate defaults.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers vol + pitch + rate defaults/prosody-multiple-modifiers vol + pitch + rate defaults.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers vol + pitch + rate defaults/prosody-multiple-modifiers vol + pitch + rate defaults.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers vol + pitch + rate defaults/prosody-multiple-modifiers vol + pitch + rate defaults.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard/sections-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard/sections-standard.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard/sections-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard/sections-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard/sections-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard/sections-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard/sections-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard/sections-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard/sections-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard/sections-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard/sections-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard/sections-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard/sections-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard end speak tag at end/sections-standard end speak tag at end.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard end speak tag at end/sections-standard end speak tag at end.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard end speak tag at end/sections-standard end speak tag at end.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard end speak tag at end/sections-standard end speak tag at end.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard end speak tag at end/sections-standard end speak tag at end.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard end speak tag at end/sections-standard end speak tag at end.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard end speak tag at end/sections-standard end speak tag at end.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard end speak tag at end/sections-standard end speak tag at end.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard end speak tag at end/sections-standard end speak tag at end.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard end speak tag at end/sections-standard end speak tag at end.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard end speak tag at end/sections-standard end speak tag at end.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard end speak tag at end/sections-standard end speak tag at end.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard end speak tag at end/sections-standard end speak tag at end.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard voice section on same line/sections-standard voice section on same line.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard voice section on same line/sections-standard voice section on same line.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard voice section on same line/sections-standard voice section on same line.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard voice section on same line/sections-standard voice section on same line.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard voice section on same line/sections-standard voice section on same line.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard voice section on same line/sections-standard voice section on same line.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard voice section on same line/sections-standard voice section on same line.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard voice section on same line/sections-standard voice section on same line.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard voice section on same line/sections-standard voice section on same line.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard voice section on same line/sections-standard voice section on same line.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard voice section on same line/sections-standard voice section on same line.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard voice section on same line/sections-standard voice section on same line.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sections-standard voice section on same line/sections-standard voice section on same line.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-short/sub-short.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/sub-standard/sub-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/timbre-standard/timbre-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/timbre-standard/timbre-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/timbre-standard/timbre-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/time-standard/time-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/time-standard/time-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/time-standard/time-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/time-standard/time-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/time-standard/time-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/time-standard/time-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/time-standard/time-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/time-standard/time-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/time-standard/time-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/time-standard/time-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/time-standard/time-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/time-standard/time-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/unit-standard/unit-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/unit-standard/unit-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/unit-standard/unit-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/unit-standard/unit-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/unit-standard/unit-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/unit-standard/unit-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/unit-standard/unit-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/unit-standard/unit-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/unit-standard/unit-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/unit-standard/unit-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/unit-standard/unit-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/unit-standard/unit-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard/voice-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard/voice-standard.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard/voice-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard/voice-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard/voice-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard/voice-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard/voice-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard/voice-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard/voice-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard/voice-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard/voice-standard.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard/voice-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard/voice-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard device name/voice-standard device name.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard device name/voice-standard device name.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard device name/voice-standard device name.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard device name/voice-standard device name.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard device name/voice-standard device name.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard device name/voice-standard device name.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard device name/voice-standard device name.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard device name/voice-standard device name.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard device name/voice-standard device name.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard device name/voice-standard device name.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard device name/voice-standard device name.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard device name/voice-standard device name.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard device name/voice-standard device name.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.apple.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.sapi.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.txt +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.w3c.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.watson.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/whisper-standard/whisper-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/whisper-standard/whisper-standard.acapela.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/whisper-standard/whisper-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/whisper-standard/whisper-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/whisper-standard/whisper-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/whisper-standard/whisper-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/whisper-standard/whisper-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/whisper-standard/whisper-standard.smd +0 -0
- {speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/tests/test-data/test-data/whisper-standard/whisper-standard.txt +0 -0
|
@@ -154,6 +154,8 @@ jobs:
|
|
|
154
154
|
- uses: actions/setup-python@v5
|
|
155
155
|
with:
|
|
156
156
|
python-version: "3.13"
|
|
157
|
+
- name: Copy README for PyPI
|
|
158
|
+
run: cp README.md bindings/python/README.md
|
|
157
159
|
- name: Build wheel
|
|
158
160
|
uses: PyO3/maturin-action@v1
|
|
159
161
|
with:
|
|
@@ -233,7 +235,7 @@ jobs:
|
|
|
233
235
|
targets: ${{ matrix.target }}
|
|
234
236
|
- uses: actions/setup-node@v4
|
|
235
237
|
with:
|
|
236
|
-
node-version: "
|
|
238
|
+
node-version: "24"
|
|
237
239
|
- name: Install cross-compilation tools (Linux aarch64)
|
|
238
240
|
if: matrix.target == 'aarch64-unknown-linux-gnu'
|
|
239
241
|
run: |
|
|
@@ -268,7 +270,7 @@ jobs:
|
|
|
268
270
|
path: .
|
|
269
271
|
- uses: actions/setup-node@v4
|
|
270
272
|
with:
|
|
271
|
-
node-version: "
|
|
273
|
+
node-version: "24"
|
|
272
274
|
registry-url: "https://registry.npmjs.org"
|
|
273
275
|
- uses: actions/download-artifact@v4
|
|
274
276
|
with:
|
|
@@ -277,6 +279,8 @@ jobs:
|
|
|
277
279
|
merge-multiple: true
|
|
278
280
|
- name: Collect .node binaries
|
|
279
281
|
run: find ${{ github.workspace }}/npm-artifacts -name '*.node' -exec cp {} . \;
|
|
282
|
+
- name: Copy README
|
|
283
|
+
run: cp ${{ github.workspace }}/README.md .
|
|
280
284
|
- run: npm install @napi-rs/cli
|
|
281
285
|
- name: Publish
|
|
282
286
|
run: npm publish --provenance --access public --ignore-scripts
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: speechmarkdown-rust
|
|
3
|
+
Version: 0.1.12
|
|
4
|
+
Classifier: Programming Language :: Rust
|
|
5
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
|
+
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Summary: SpeechMarkdown parser - convert SpeechMarkdown to SSML
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
Requires-Python: >=3.8
|
|
11
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
12
|
+
|
|
13
|
+
# SpeechMarkdown Rust
|
|
14
|
+
|
|
15
|
+
High-performance SpeechMarkdown parser written in Rust. Converts [SpeechMarkdown](https://speechmarkdown.com/) syntax to platform-specific SSML for Amazon Alexa, Google Assistant, Microsoft Azure, and more.
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
### Rust
|
|
20
|
+
|
|
21
|
+
```rust
|
|
22
|
+
use speechmarkdown_rust::{SpeechMarkdownParser, Platform};
|
|
23
|
+
|
|
24
|
+
// Convert to SSML
|
|
25
|
+
let ssml = SpeechMarkdownParser::to_ssml(
|
|
26
|
+
"Hello (world)[emphasis:\"strong\"]",
|
|
27
|
+
Platform::AmazonAlexa,
|
|
28
|
+
)?;
|
|
29
|
+
// => <speak>Hello <emphasis level="strong">world</emphasis></speak>
|
|
30
|
+
|
|
31
|
+
// Convert to plain text
|
|
32
|
+
let text = SpeechMarkdownParser::to_text("Hello (world)[emphasis:\"strong\"]")?;
|
|
33
|
+
// => Hello world
|
|
34
|
+
|
|
35
|
+
// Parse to AST (JSON)
|
|
36
|
+
let ast = SpeechMarkdownParser::parse("Hello world")?;
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Supported Platforms
|
|
40
|
+
|
|
41
|
+
| Platform | Enum Value | String ID |
|
|
42
|
+
|----------|-----------|-----------|
|
|
43
|
+
| Amazon Alexa | `Platform::AmazonAlexa` | `"amazon-alexa"` or `"alexa"` |
|
|
44
|
+
| Google Assistant | `Platform::GoogleAssistant` | `"google-assistant"` or `"google"` |
|
|
45
|
+
| Microsoft Azure | `Platform::MicrosoftAzure` | `"microsoft-azure"` or `"azure"` |
|
|
46
|
+
| Apple | `Platform::Apple` | `"apple"` |
|
|
47
|
+
| W3C | `Platform::W3c` | `"w3c"` |
|
|
48
|
+
| Samsung Bixby | `Platform::SamsungBixby` | `"samsung-bixby"` or `"bixby"` |
|
|
49
|
+
| ElevenLabs | `Platform::ElevenLabs` | `"elevenlabs"` |
|
|
50
|
+
| IBM Watson | `Platform::IbmWatson` | `"ibm-watson"` or `"watson"` |
|
|
51
|
+
|
|
52
|
+
## Language Bindings
|
|
53
|
+
|
|
54
|
+
The library exposes a C ABI (`cdylib`/`staticlib`) so it can be used from any language. Pre-built bindings are provided for .NET, Swift, and Node.js.
|
|
55
|
+
|
|
56
|
+
### Build the native library
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
cargo build --release
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
This produces:
|
|
63
|
+
- **Windows**: `target/release/speechmarkdown_rust.dll`
|
|
64
|
+
- **macOS**: `target/release/libspeechmarkdown_rust.dylib`
|
|
65
|
+
- **Linux**: `target/release/libspeechmarkdown_rust.so`
|
|
66
|
+
|
|
67
|
+
### C API
|
|
68
|
+
|
|
69
|
+
```c
|
|
70
|
+
#include "bindings/speechmarkdown.h"
|
|
71
|
+
|
|
72
|
+
// Convert SpeechMarkdown to SSML
|
|
73
|
+
const char* ssml = speechmarkdown_to_ssml("Hello (world)[emphasis:\"strong\"]", "amazon-alexa");
|
|
74
|
+
printf("%s\n", ssml);
|
|
75
|
+
speechmarkdown_free((char*)ssml);
|
|
76
|
+
|
|
77
|
+
// Convert to plain text
|
|
78
|
+
const char* text = speechmarkdown_to_text("Hello (world)[emphasis:\"strong\"]");
|
|
79
|
+
printf("%s\n", text);
|
|
80
|
+
speechmarkdown_free((char*)text);
|
|
81
|
+
|
|
82
|
+
// Get last error (thread-local)
|
|
83
|
+
const char* err = speechmarkdown_get_error();
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### .NET (C#)
|
|
87
|
+
|
|
88
|
+
```csharp
|
|
89
|
+
using SpeechMarkdown;
|
|
90
|
+
|
|
91
|
+
var parser = new SpeechMarkdownParser();
|
|
92
|
+
|
|
93
|
+
string ssml = parser.ToSsml("Hello (world)[emphasis:\"strong\"]", Platform.AmazonAlexa);
|
|
94
|
+
string text = parser.ToText("Hello (world)[emphasis:\"strong\"]");
|
|
95
|
+
string json = parser.ParseToJson("Hello world");
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
Copy `bindings/dotnet/SpeechMarkdown.cs` into your project and place the native library in your output directory alongside the assembly.
|
|
99
|
+
|
|
100
|
+
### Swift
|
|
101
|
+
|
|
102
|
+
```swift
|
|
103
|
+
import SpeechMarkdown
|
|
104
|
+
|
|
105
|
+
let parser = SpeechMarkdownParser()
|
|
106
|
+
|
|
107
|
+
let ssml = try parser.toSsml(input: "Hello (world)[emphasis:\"strong\"]", platform: "amazon-alexa")
|
|
108
|
+
let text = try parser.toText(input: "Hello (world)[emphasis:\"strong\"]")
|
|
109
|
+
let json = try parser.parseToJson(input: "Hello world")
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
Include `bindings/swift/SpeechMarkdown.swift`, `bindings/swift/module.modulemap`, and `bindings/speechmarkdown.h` in your Xcode project. Link against the compiled `.dylib`.
|
|
113
|
+
|
|
114
|
+
### Node.js
|
|
115
|
+
|
|
116
|
+
```js
|
|
117
|
+
const { SpeechMarkdownParser } = require('./bindings/nodejs');
|
|
118
|
+
|
|
119
|
+
const parser = new SpeechMarkdownParser();
|
|
120
|
+
|
|
121
|
+
const ssml = parser.toSsml('Hello (world)[emphasis:"strong"]', 'amazon-alexa');
|
|
122
|
+
const text = parser.toText('Hello (world)[emphasis:"strong"]');
|
|
123
|
+
const json = parser.parseToJson('Hello world');
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
Install `ffi-napi` and `ref-napi` as dependencies. Build the native library first with `cargo build --release`.
|
|
127
|
+
|
|
128
|
+
### Python
|
|
129
|
+
|
|
130
|
+
```python
|
|
131
|
+
from speechmarkdown import to_ssml, to_text, parse
|
|
132
|
+
|
|
133
|
+
ssml = to_ssml('Hello (world)[emphasis:"strong"]', 'amazon-alexa')
|
|
134
|
+
text = to_text('Hello (world)[emphasis:"strong"]')
|
|
135
|
+
ast = parse('Hello world') # returns dict
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
Available on [PyPI](https://pypi.org/project/speechmarkdown-rust/) as `speechmarkdown-rust`.
|
|
139
|
+
|
{speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/dotnet/SpeechMarkdown.nuspec
RENAMED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<package>
|
|
3
3
|
<metadata>
|
|
4
4
|
<id>SpeechMarkdown</id>
|
|
5
|
-
<version>0.1.
|
|
5
|
+
<version>0.1.12</version>
|
|
6
6
|
<title>SpeechMarkdown</title>
|
|
7
7
|
<authors>SpeechMarkdown Contributors</authors>
|
|
8
8
|
<description>SpeechMarkdown parser - convert SpeechMarkdown syntax to SSML for Alexa, Google Assistant, Azure, and more.</description>
|
|
@@ -200,7 +200,7 @@ dependencies = [
|
|
|
200
200
|
|
|
201
201
|
[[package]]
|
|
202
202
|
name = "speechmarkdown-python"
|
|
203
|
-
version = "0.1.
|
|
203
|
+
version = "0.1.12"
|
|
204
204
|
dependencies = [
|
|
205
205
|
"pyo3",
|
|
206
206
|
"serde_json",
|
|
@@ -209,7 +209,7 @@ dependencies = [
|
|
|
209
209
|
|
|
210
210
|
[[package]]
|
|
211
211
|
name = "speechmarkdown-rust"
|
|
212
|
-
version = "0.1.
|
|
212
|
+
version = "0.1.12"
|
|
213
213
|
dependencies = [
|
|
214
214
|
"serde",
|
|
215
215
|
"serde_json",
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
# SpeechMarkdown Rust
|
|
2
|
+
|
|
3
|
+
High-performance SpeechMarkdown parser written in Rust. Converts [SpeechMarkdown](https://speechmarkdown.com/) syntax to platform-specific SSML for Amazon Alexa, Google Assistant, Microsoft Azure, and more.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
### Rust
|
|
8
|
+
|
|
9
|
+
```rust
|
|
10
|
+
use speechmarkdown_rust::{SpeechMarkdownParser, Platform};
|
|
11
|
+
|
|
12
|
+
// Convert to SSML
|
|
13
|
+
let ssml = SpeechMarkdownParser::to_ssml(
|
|
14
|
+
"Hello (world)[emphasis:\"strong\"]",
|
|
15
|
+
Platform::AmazonAlexa,
|
|
16
|
+
)?;
|
|
17
|
+
// => <speak>Hello <emphasis level="strong">world</emphasis></speak>
|
|
18
|
+
|
|
19
|
+
// Convert to plain text
|
|
20
|
+
let text = SpeechMarkdownParser::to_text("Hello (world)[emphasis:\"strong\"]")?;
|
|
21
|
+
// => Hello world
|
|
22
|
+
|
|
23
|
+
// Parse to AST (JSON)
|
|
24
|
+
let ast = SpeechMarkdownParser::parse("Hello world")?;
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Supported Platforms
|
|
28
|
+
|
|
29
|
+
| Platform | Enum Value | String ID |
|
|
30
|
+
|----------|-----------|-----------|
|
|
31
|
+
| Amazon Alexa | `Platform::AmazonAlexa` | `"amazon-alexa"` or `"alexa"` |
|
|
32
|
+
| Google Assistant | `Platform::GoogleAssistant` | `"google-assistant"` or `"google"` |
|
|
33
|
+
| Microsoft Azure | `Platform::MicrosoftAzure` | `"microsoft-azure"` or `"azure"` |
|
|
34
|
+
| Apple | `Platform::Apple` | `"apple"` |
|
|
35
|
+
| W3C | `Platform::W3c` | `"w3c"` |
|
|
36
|
+
| Samsung Bixby | `Platform::SamsungBixby` | `"samsung-bixby"` or `"bixby"` |
|
|
37
|
+
| ElevenLabs | `Platform::ElevenLabs` | `"elevenlabs"` |
|
|
38
|
+
| IBM Watson | `Platform::IbmWatson` | `"ibm-watson"` or `"watson"` |
|
|
39
|
+
|
|
40
|
+
## Language Bindings
|
|
41
|
+
|
|
42
|
+
The library exposes a C ABI (`cdylib`/`staticlib`) so it can be used from any language. Pre-built bindings are provided for .NET, Swift, and Node.js.
|
|
43
|
+
|
|
44
|
+
### Build the native library
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
cargo build --release
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
This produces:
|
|
51
|
+
- **Windows**: `target/release/speechmarkdown_rust.dll`
|
|
52
|
+
- **macOS**: `target/release/libspeechmarkdown_rust.dylib`
|
|
53
|
+
- **Linux**: `target/release/libspeechmarkdown_rust.so`
|
|
54
|
+
|
|
55
|
+
### C API
|
|
56
|
+
|
|
57
|
+
```c
|
|
58
|
+
#include "bindings/speechmarkdown.h"
|
|
59
|
+
|
|
60
|
+
// Convert SpeechMarkdown to SSML
|
|
61
|
+
const char* ssml = speechmarkdown_to_ssml("Hello (world)[emphasis:\"strong\"]", "amazon-alexa");
|
|
62
|
+
printf("%s\n", ssml);
|
|
63
|
+
speechmarkdown_free((char*)ssml);
|
|
64
|
+
|
|
65
|
+
// Convert to plain text
|
|
66
|
+
const char* text = speechmarkdown_to_text("Hello (world)[emphasis:\"strong\"]");
|
|
67
|
+
printf("%s\n", text);
|
|
68
|
+
speechmarkdown_free((char*)text);
|
|
69
|
+
|
|
70
|
+
// Get last error (thread-local)
|
|
71
|
+
const char* err = speechmarkdown_get_error();
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### .NET (C#)
|
|
75
|
+
|
|
76
|
+
```csharp
|
|
77
|
+
using SpeechMarkdown;
|
|
78
|
+
|
|
79
|
+
var parser = new SpeechMarkdownParser();
|
|
80
|
+
|
|
81
|
+
string ssml = parser.ToSsml("Hello (world)[emphasis:\"strong\"]", Platform.AmazonAlexa);
|
|
82
|
+
string text = parser.ToText("Hello (world)[emphasis:\"strong\"]");
|
|
83
|
+
string json = parser.ParseToJson("Hello world");
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Copy `bindings/dotnet/SpeechMarkdown.cs` into your project and place the native library in your output directory alongside the assembly.
|
|
87
|
+
|
|
88
|
+
### Swift
|
|
89
|
+
|
|
90
|
+
```swift
|
|
91
|
+
import SpeechMarkdown
|
|
92
|
+
|
|
93
|
+
let parser = SpeechMarkdownParser()
|
|
94
|
+
|
|
95
|
+
let ssml = try parser.toSsml(input: "Hello (world)[emphasis:\"strong\"]", platform: "amazon-alexa")
|
|
96
|
+
let text = try parser.toText(input: "Hello (world)[emphasis:\"strong\"]")
|
|
97
|
+
let json = try parser.parseToJson(input: "Hello world")
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
Include `bindings/swift/SpeechMarkdown.swift`, `bindings/swift/module.modulemap`, and `bindings/speechmarkdown.h` in your Xcode project. Link against the compiled `.dylib`.
|
|
101
|
+
|
|
102
|
+
### Node.js
|
|
103
|
+
|
|
104
|
+
```js
|
|
105
|
+
const { SpeechMarkdownParser } = require('./bindings/nodejs');
|
|
106
|
+
|
|
107
|
+
const parser = new SpeechMarkdownParser();
|
|
108
|
+
|
|
109
|
+
const ssml = parser.toSsml('Hello (world)[emphasis:"strong"]', 'amazon-alexa');
|
|
110
|
+
const text = parser.toText('Hello (world)[emphasis:"strong"]');
|
|
111
|
+
const json = parser.parseToJson('Hello world');
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
Install `ffi-napi` and `ref-napi` as dependencies. Build the native library first with `cargo build --release`.
|
|
115
|
+
|
|
116
|
+
### Python
|
|
117
|
+
|
|
118
|
+
```python
|
|
119
|
+
from speechmarkdown import to_ssml, to_text, parse
|
|
120
|
+
|
|
121
|
+
ssml = to_ssml('Hello (world)[emphasis:"strong"]', 'amazon-alexa')
|
|
122
|
+
text = to_text('Hello (world)[emphasis:"strong"]')
|
|
123
|
+
ast = parse('Hello world') # returns dict
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
Available on [PyPI](https://pypi.org/project/speechmarkdown-rust/) as `speechmarkdown-rust`.
|
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: speechmarkdown-rust
|
|
3
|
-
Version: 0.1.9
|
|
4
|
-
Classifier: Programming Language :: Rust
|
|
5
|
-
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
|
-
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
|
|
7
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
-
Summary: SpeechMarkdown parser - convert SpeechMarkdown to SSML
|
|
9
|
-
License-Expression: MIT
|
|
10
|
-
Requires-Python: >=3.8
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/dotnet/SpeechMarkdown.targets
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/bindings/swift/SpeechMarkdown.swift
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/formatters/ssml/amazon_alexa.rs
RENAMED
|
File without changes
|
|
File without changes
|
{speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/formatters/ssml/google_assistant.rs
RENAMED
|
File without changes
|
{speechmarkdown_rust-0.1.9 → speechmarkdown_rust-0.1.12}/src/formatters/ssml/microsoft_azure.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|