speechmarkdown-rust 0.4.0__tar.gz → 0.4.2__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.4.0 → speechmarkdown_rust-0.4.2}/.github/workflows/publish.yml +4 -3
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/Cargo.toml +1 -1
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/PKG-INFO +1 -1
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/Package.swift +2 -2
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/dotnet/SpeechMarkdown.nuspec +1 -1
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/python/Cargo.lock +2 -2
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/python/Cargo.toml +1 -1
- speechmarkdown_rust-0.4.2/bindings/python/dist/speechmarkdown_rust-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- speechmarkdown_rust-0.4.2/bindings/swift/Sources/CSpeechMarkdown/dummy.c +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/pyproject.toml +1 -1
- speechmarkdown_rust-0.4.0/bindings/python/dist/speechmarkdown_rust-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/.github/workflows/ci.yml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/.gitignore +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/.gitmodules +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/README.md +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/dotnet/SpeechMarkdown.cs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/dotnet/SpeechMarkdown.targets +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/python/README.md +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/python/speechmarkdown.pyi +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/python/src/lib.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/speechmarkdown.h +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/swift/Example.swift +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/swift/Package.swift +0 -0
- {speechmarkdown_rust-0.4.0/bindings/swift/Sources/CSpeechMarkdown → speechmarkdown_rust-0.4.2/bindings/swift/Sources/CSpeechMarkdown/include}/shim.h +0 -0
- {speechmarkdown_rust-0.4.0/bindings/swift/Sources/CSpeechMarkdown → speechmarkdown_rust-0.4.2/bindings/swift/Sources/CSpeechMarkdown/include}/speechmarkdown.h +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/swift/Sources/CSpeechMarkdown/module.modulemap +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/swift/Sources/SpeechMarkdown/SpeechMarkdown.swift +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/swift/SpeechMarkdown.swift +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/swift/module.modulemap +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/build-swift-package.sh +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/build.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/cbindgen.toml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/ast.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/capabilities.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/error.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/ffi.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/formatters/base.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/formatters/mod.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/formatters/ssml/amazon_alexa.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/formatters/ssml/base.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/formatters/ssml/google_assistant.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/formatters/ssml/microsoft_azure.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/formatters/ssml/mod.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/formatters/text.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/grammar.pest +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/lib.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/parser/mod.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/parser/parser.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/ssml_to_smd.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/break_specific_test.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/debug_failures.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/diagnostic_test.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/ffi_test.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/integration_test.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/remaining_test.rs +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/CODE-OF-CONDUCT.md +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/CONTRIBUTING.md +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/LICENSE +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/LICENSE-SAMPLECODE +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/LICENSE-SUMMARY +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/README.md +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/address-standard/address-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/address-standard/address-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/address-standard/address-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/address-standard/address-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/address-standard/address-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/address-standard/address-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/address-standard/address-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/address-standard/address-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/address-standard/address-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/address-standard/address-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/address-standard/address-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/address-standard/address-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard/audio-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard/audio-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard/audio-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard/audio-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard/audio-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard/audio-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard/audio-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard/audio-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard/audio-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard/audio-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard/audio-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard/audio-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard single quote/audio-standard single quote.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-standard soundbank/audio-standard soundbank.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-with-caption/audio-with-caption.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-with-caption/audio-with-caption.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/audio-with-caption/audio-with-caption.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-role-young-female/azure-role-young-female.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-role-young-female/azure-role-young-female.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-role-young-female/azure-role-young-female.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-section-angry/azure-section-angry.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-section-angry/azure-section-angry.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-section-angry/azure-section-angry.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-section-cheerful/azure-section-cheerful.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-section-cheerful/azure-section-cheerful.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-section-cheerful/azure-section-cheerful.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-section-friendly/azure-section-friendly.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-section-friendly/azure-section-friendly.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-section-friendly/azure-section-friendly.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-section-sad/azure-section-sad.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-section-sad/azure-section-sad.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-section-sad/azure-section-sad.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-advertisement_upbeat/azure-style-advertisement_upbeat.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-advertisement_upbeat/azure-style-advertisement_upbeat.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-affectionate/azure-style-affectionate.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-affectionate/azure-style-affectionate.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-angry/azure-style-angry.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-angry/azure-style-angry.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-angry/azure-style-angry.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-assistant/azure-style-assistant.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-assistant/azure-style-assistant.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-calm/azure-style-calm.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-calm/azure-style-calm.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-chat/azure-style-chat.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-chat/azure-style-chat.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-chat/azure-style-chat.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-cheerful/azure-style-cheerful.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-cheerful/azure-style-cheerful.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-cheerful/azure-style-cheerful.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-customerservice/azure-style-customerservice.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-customerservice/azure-style-customerservice.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-customerservice/azure-style-customerservice.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-depressed/azure-style-depressed.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-depressed/azure-style-depressed.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-disgruntled/azure-style-disgruntled.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-disgruntled/azure-style-disgruntled.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-documentary-narration/azure-style-documentary-narration.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-documentary-narration/azure-style-documentary-narration.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-embarrassed/azure-style-embarrassed.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-embarrassed/azure-style-embarrassed.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-empathetic/azure-style-empathetic.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-empathetic/azure-style-empathetic.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-envious/azure-style-envious.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-envious/azure-style-envious.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-excited/azure-style-excited.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-excited/azure-style-excited.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-excited/azure-style-excited.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-fearful/azure-style-fearful.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-fearful/azure-style-fearful.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-friendly/azure-style-friendly.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-friendly/azure-style-friendly.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-friendly/azure-style-friendly.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-gentle/azure-style-gentle.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-gentle/azure-style-gentle.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-hopeful/azure-style-hopeful.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-hopeful/azure-style-hopeful.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-lyrical/azure-style-lyrical.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-lyrical/azure-style-lyrical.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-narration-professional/azure-style-narration-professional.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-narration-professional/azure-style-narration-professional.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-narration-professional/azure-style-narration-professional.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-narration-relaxed/azure-style-narration-relaxed.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-narration-relaxed/azure-style-narration-relaxed.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-newscast-casual/azure-style-newscast-casual.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-newscast-casual/azure-style-newscast-casual.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-newscast-casual/azure-style-newscast-casual.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-newscast-formal/azure-style-newscast-formal.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-newscast-formal/azure-style-newscast-formal.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-newscaster/azure-style-newscaster.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-newscaster/azure-style-newscaster.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-newscaster/azure-style-newscaster.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-poetry-reading/azure-style-poetry-reading.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-poetry-reading/azure-style-poetry-reading.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-role-degree/azure-style-role-degree.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-role-degree/azure-style-role-degree.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-sad/azure-style-sad.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-sad/azure-style-sad.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-sad/azure-style-sad.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-serious/azure-style-serious.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-serious/azure-style-serious.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-shouting/azure-style-shouting.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-shouting/azure-style-shouting.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-sports_commentary/azure-style-sports_commentary.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-sports_commentary/azure-style-sports_commentary.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-sports_commentary_excited/azure-style-sports_commentary_excited.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-sports_commentary_excited/azure-style-sports_commentary_excited.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-terrified/azure-style-terrified.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-terrified/azure-style-terrified.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-unfriendly/azure-style-unfriendly.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-unfriendly/azure-style-unfriendly.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-whispering/azure-style-whispering.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-whispering/azure-style-whispering.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-with-degree/azure-style-with-degree.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-with-degree/azure-style-with-degree.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/azure-style-with-degree/azure-style-with-degree.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/bare-ipa/bare-ipa.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-short/break-short.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-strength/break-strength.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/break-time/break-time.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/cardinal-standard/cardinal-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/cardinal-standard/cardinal-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/cardinal-standard/cardinal-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/cardinal-standard/cardinal-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/cardinal-standard/cardinal-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/cardinal-standard/cardinal-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/cardinal-standard/cardinal-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/cardinal-standard/cardinal-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/cardinal-standard/cardinal-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/cardinal-standard/cardinal-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/cardinal-standard/cardinal-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/cardinal-standard/cardinal-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/cardinal-standard/cardinal-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/characters-standard/characters-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-break-emphasis/combo-break-emphasis.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-break-emphasis/combo-break-emphasis.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-break-emphasis/combo-break-emphasis.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-break-emphasis/combo-break-emphasis.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-break-emphasis/combo-break-emphasis.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-break-emphasis/combo-break-emphasis.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-emphasis-prosody/combo-emphasis-prosody.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-ipa-emphasis/combo-ipa-emphasis.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-prosody/combo-sayas-prosody.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sayas-sub/combo-sayas-sub.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-sub-prosody/combo-sub-prosody.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-voice-prosody/combo-voice-prosody.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-whisper-emphasis/combo-whisper-emphasis.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-whisper-emphasis/combo-whisper-emphasis.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-whisper-emphasis/combo-whisper-emphasis.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-whisper-emphasis/combo-whisper-emphasis.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-whisper-emphasis/combo-whisper-emphasis.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/combo-whisper-emphasis/combo-whisper-emphasis.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/date-standard/date-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/date-standard/date-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/date-standard/date-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/date-standard/date-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/date-standard/date-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/date-standard/date-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/date-standard/date-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/date-standard/date-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/date-standard/date-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/date-standard/date-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/date-standard/date-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/date-standard/date-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/digits-standard/digits-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/digits-standard/digits-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/digits-standard/digits-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/digits-standard/digits-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/digits-standard/digits-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/digits-standard/digits-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/digits-standard/digits-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/digits-standard/digits-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/digits-standard/digits-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/digits-standard/digits-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/digits-standard/digits-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/digits-standard/digits-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/digits-standard/digits-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-section section on same line/disappointed-section section on same line.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-section section on same line/disappointed-section section on same line.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-section section on same line/disappointed-section section on same line.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-section section on same line/disappointed-section section on same line.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-standard/disappointed-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-standard/disappointed-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-standard/disappointed-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-standard/disappointed-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-standard invalid intensity/disappointed-standard invalid intensity.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-standard invalid intensity/disappointed-standard invalid intensity.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-standard invalid intensity/disappointed-standard invalid intensity.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-standard invalid intensity/disappointed-standard invalid intensity.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-standard non-lowercase intensity/disappointed-standard non-lowercase intensity.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-standard non-lowercase intensity/disappointed-standard non-lowercase intensity.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-standard non-lowercase intensity/disappointed-standard non-lowercase intensity.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/disappointed-standard non-lowercase intensity/disappointed-standard non-lowercase intensity.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/dj-section section on same line/dj-section section on same line.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/dj-section section on same line/dj-section section on same line.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/dj-section section on same line/dj-section section on same line.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/drc-standard/drc-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/drc-standard/drc-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/drc-standard/drc-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/drc-standard/drc-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-edge-date/emphasis-edge-date.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-edge-date/emphasis-edge-date.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-edge-date/emphasis-edge-date.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-edge-date/emphasis-edge-date.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-edge-date/emphasis-edge-date.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-edge-hyphenated/emphasis-edge-hyphenated.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-edge-hyphenated/emphasis-edge-hyphenated.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-edge-hyphenated/emphasis-edge-hyphenated.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-edge-hyphenated/emphasis-edge-hyphenated.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-edge-hyphenated/emphasis-edge-hyphenated.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-moderate/emphasis-short-moderate.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-moderate/emphasis-short-moderate.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-moderate/emphasis-short-moderate.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-moderate/emphasis-short-moderate.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-moderate/emphasis-short-moderate.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-moderate/emphasis-short-moderate.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-none/emphasis-short-none.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-none/emphasis-short-none.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-none/emphasis-short-none.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-none/emphasis-short-none.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-none/emphasis-short-none.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-none/emphasis-short-none.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-reduced/emphasis-short-reduced.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-reduced/emphasis-short-reduced.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-reduced/emphasis-short-reduced.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-reduced/emphasis-short-reduced.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-reduced/emphasis-short-reduced.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-reduced/emphasis-short-reduced.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-strong/emphasis-short-strong.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-strong/emphasis-short-strong.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-strong/emphasis-short-strong.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-strong/emphasis-short-strong.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-strong/emphasis-short-strong.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-short-strong/emphasis-short-strong.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-moderate/emphasis-standard-moderate.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-none/emphasis-standard-none.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-reduced/emphasis-standard-reduced.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/emphasis-standard-strong/emphasis-standard-strong.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/escape-xml-characters/escape-xml-characters.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-section section on same line/excited-section section on same line.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-section section on same line/excited-section section on same line.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-section section on same line/excited-section section on same line.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-section section on same line/excited-section section on same line.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-standard/excited-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-standard/excited-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-standard/excited-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-standard/excited-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-standard invalid intensity/excited-standard invalid intensity.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-standard invalid intensity/excited-standard invalid intensity.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-standard invalid intensity/excited-standard invalid intensity.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-standard invalid intensity/excited-standard invalid intensity.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-standard non-lowercase intensity/excited-standard non-lowercase intensity.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-standard non-lowercase intensity/excited-standard non-lowercase intensity.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-standard non-lowercase intensity/excited-standard non-lowercase intensity.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/excited-standard non-lowercase intensity/excited-standard non-lowercase intensity.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expletive-standard/expletive-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expletive-standard/expletive-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expletive-standard/expletive-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expletive-standard/expletive-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expletive-standard/expletive-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expletive-standard/expletive-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expletive-standard/expletive-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expletive-standard/expletive-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expletive-standard/expletive-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-ahem/expressive-ahem.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-ahem/expressive-ahem.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-ahem/expressive-ahem.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-ahem/expressive-ahem.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-applause/expressive-applause.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-applause/expressive-applause.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-applause/expressive-applause.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-applause/expressive-applause.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-bleh/expressive-bleh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-bleh/expressive-bleh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-bleh/expressive-bleh.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-bleh/expressive-bleh.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-boo/expressive-boo.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-boo/expressive-boo.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-boo/expressive-boo.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-boo/expressive-boo.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cheer/expressive-cheer.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cheer/expressive-cheer.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cheer/expressive-cheer.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cheer/expressive-cheer.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cheering/expressive-cheering.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cheering/expressive-cheering.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cheering/expressive-cheering.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cheering/expressive-cheering.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cough/expressive-cough.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cough/expressive-cough.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cough/expressive-cough.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cough/expressive-cough.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cry/expressive-cry.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cry/expressive-cry.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cry/expressive-cry.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-cry/expressive-cry.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-crying/expressive-crying.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-crying/expressive-crying.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-crying/expressive-crying.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-crying/expressive-crying.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-eek/expressive-eek.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-eek/expressive-eek.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-eek/expressive-eek.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-eek/expressive-eek.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-gasp/expressive-gasp.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-gasp/expressive-gasp.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-gasp/expressive-gasp.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-gasp/expressive-gasp.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-giggle/expressive-giggle.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-giggle/expressive-giggle.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-giggle/expressive-giggle.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-giggle/expressive-giggle.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-groan/expressive-groan.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-groan/expressive-groan.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-groan/expressive-groan.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-groan/expressive-groan.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-groaning/expressive-groaning.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-groaning/expressive-groaning.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-groaning/expressive-groaning.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-groaning/expressive-groaning.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hiccup/expressive-hiccup.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hiccup/expressive-hiccup.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hiccup/expressive-hiccup.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hiccup/expressive-hiccup.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hmm/expressive-hmm.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hmm/expressive-hmm.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hmm/expressive-hmm.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hmm/expressive-hmm.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-huh/expressive-huh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-huh/expressive-huh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-huh/expressive-huh.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-huh/expressive-huh.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hum/expressive-hum.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hum/expressive-hum.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hum/expressive-hum.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hum/expressive-hum.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hurray/expressive-hurray.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hurray/expressive-hurray.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hurray/expressive-hurray.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-hurray/expressive-hurray.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-laugh/expressive-laugh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-laugh/expressive-laugh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-laugh/expressive-laugh.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-laugh/expressive-laugh.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-laughter/expressive-laughter.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-laughter/expressive-laughter.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-laughter/expressive-laughter.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-laughter/expressive-laughter.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-meh/expressive-meh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-meh/expressive-meh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-meh/expressive-meh.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-meh/expressive-meh.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-mhm/expressive-mhm.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-mhm/expressive-mhm.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-mhm/expressive-mhm.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-mhm/expressive-mhm.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-mm-hmm/expressive-mm-hmm.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-mm-hmm/expressive-mm-hmm.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-mm-hmm/expressive-mm-hmm.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-mm-hmm/expressive-mm-hmm.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-mmm/expressive-mmm.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-mmm/expressive-mmm.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-mmm/expressive-mmm.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-mmm/expressive-mmm.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-moan/expressive-moan.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-moan/expressive-moan.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-moan/expressive-moan.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-moan/expressive-moan.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-multiple/expressive-multiple.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-multiple/expressive-multiple.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-multiple/expressive-multiple.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-multiple/expressive-multiple.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-oh/expressive-oh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-oh/expressive-oh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-oh/expressive-oh.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-oh/expressive-oh.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-ooh/expressive-ooh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-ooh/expressive-ooh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-ooh/expressive-ooh.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-ooh/expressive-ooh.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-pant/expressive-pant.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-pant/expressive-pant.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-pant/expressive-pant.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-pant/expressive-pant.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-pfft/expressive-pfft.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-pfft/expressive-pfft.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-pfft/expressive-pfft.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-pfft/expressive-pfft.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-phew/expressive-phew.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-phew/expressive-phew.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-phew/expressive-phew.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-phew/expressive-phew.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-psst/expressive-psst.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-psst/expressive-psst.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-psst/expressive-psst.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-psst/expressive-psst.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-scream/expressive-scream.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-scream/expressive-scream.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-scream/expressive-scream.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-scream/expressive-scream.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-shh/expressive-shh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-shh/expressive-shh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-shh/expressive-shh.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-shh/expressive-shh.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-shush/expressive-shush.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-shush/expressive-shush.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-shush/expressive-shush.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-shush/expressive-shush.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-sigh/expressive-sigh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-sigh/expressive-sigh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-sigh/expressive-sigh.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-sigh/expressive-sigh.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-sneeze/expressive-sneeze.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-sneeze/expressive-sneeze.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-sneeze/expressive-sneeze.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-sneeze/expressive-sneeze.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-sniff/expressive-sniff.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-sniff/expressive-sniff.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-sniff/expressive-sniff.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-sniff/expressive-sniff.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-throat-clear/expressive-throat-clear.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-throat-clear/expressive-throat-clear.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-throat-clear/expressive-throat-clear.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-throat-clear/expressive-throat-clear.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-tsk/expressive-tsk.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-tsk/expressive-tsk.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-tsk/expressive-tsk.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-tsk/expressive-tsk.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-tsk-tsk/expressive-tsk-tsk.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-tsk-tsk/expressive-tsk-tsk.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-tsk-tsk/expressive-tsk-tsk.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-tsk-tsk/expressive-tsk-tsk.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-uh-huh/expressive-uh-huh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-uh-huh/expressive-uh-huh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-uh-huh/expressive-uh-huh.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-uh-huh/expressive-uh-huh.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-uh-oh/expressive-uh-oh.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-uh-oh/expressive-uh-oh.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-uh-oh/expressive-uh-oh.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-uh-oh/expressive-uh-oh.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-umph/expressive-umph.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-umph/expressive-umph.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-umph/expressive-umph.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-umph/expressive-umph.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-wheeze/expressive-wheeze.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-wheeze/expressive-wheeze.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-wheeze/expressive-wheeze.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-wheeze/expressive-wheeze.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-whew/expressive-whew.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-whew/expressive-whew.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-whew/expressive-whew.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-whew/expressive-whew.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-whimper/expressive-whimper.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-whimper/expressive-whimper.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-whimper/expressive-whimper.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-whimper/expressive-whimper.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-with-break/expressive-with-break.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-with-break/expressive-with-break.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-with-break/expressive-with-break.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-with-break/expressive-with-break.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-wow/expressive-wow.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-wow/expressive-wow.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-wow/expressive-wow.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-wow/expressive-wow.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-yawn/expressive-yawn.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-yawn/expressive-yawn.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-yawn/expressive-yawn.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-yawn/expressive-yawn.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-yay/expressive-yay.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-yay/expressive-yay.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-yay/expressive-yay.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-yay/expressive-yay.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-yeah/expressive-yeah.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-yeah/expressive-yeah.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-yeah/expressive-yeah.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/expressive-yeah/expressive-yeah.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard/fraction-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard/fraction-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard/fraction-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard/fraction-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard/fraction-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard/fraction-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard/fraction-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard/fraction-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard/fraction-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard/fraction-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard/fraction-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard/fraction-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard/fraction-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/fraction-standard includes a plus sign/fraction-standard includes a plus sign.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/google-style/google-style.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/google-style/google-style.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/google-style/google-style.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/interjection-standard/interjection-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/interjection-standard/interjection-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/interjection-standard/interjection-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/interjection-standard/interjection-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/interjection-standard/interjection-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/interjection-standard/interjection-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/interjection-standard/interjection-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-short/ipa-short.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard/ipa-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-uk/ipa-standard-alphabet-uk.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ipa-standard-alphabet-us/ipa-standard-alphabet-us.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/lang-standard/lang-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/lang-standard/lang-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/lang-standard/lang-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/lang-standard/lang-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/lang-standard/lang-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/lang-standard/lang-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/lang-standard/lang-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/lang-standard/lang-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/lang-standard/lang-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/lang-standard/lang-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/lang-standard/lang-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/mark-standard/mark-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/mark-standard/mark-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/mark-standard/mark-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/mark-standard/mark-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/mark-standard/mark-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/mark-standard/mark-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/mark-standard/mark-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/mark-standard/mark-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/mark-standard/mark-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/mark-standard/mark-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/modifier-text-allowed-chars minus sign/modifier-text-allowed-chars minus sign.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/multiple-modifiers-same-text/multiple-modifiers-same-text.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/newscaster-section section on same line/newscaster-section section on same line.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/newscaster-section section on same line/newscaster-section section on same line.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/newscaster-section section on same line/newscaster-section section on same line.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/newscaster-section section on same line/newscaster-section section on same line.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-markdown/no-markdown.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.elevenlabs.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/no-modifiers/no-modifiers.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/number-standard/number-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/number-standard/number-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/number-standard/number-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/number-standard/number-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/number-standard/number-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/number-standard/number-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/number-standard/number-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/number-standard/number-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/number-standard/number-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/number-standard/number-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/number-standard/number-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/number-standard/number-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/number-standard/number-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ordinal-standard/ordinal-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ordinal-standard/ordinal-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ordinal-standard/ordinal-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ordinal-standard/ordinal-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ordinal-standard/ordinal-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ordinal-standard/ordinal-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ordinal-standard/ordinal-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ordinal-standard/ordinal-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ordinal-standard/ordinal-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ordinal-standard/ordinal-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ordinal-standard/ordinal-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ordinal-standard/ordinal-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/ordinal-standard/ordinal-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-high/pitch-standard-high.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-low/pitch-standard-low.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-medium/pitch-standard-medium.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-high/pitch-standard-x-high.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/pitch-standard-x-low/pitch-standard-x-low.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + pitch/prosody-multiple-modifiers rate + pitch.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers rate + volume/prosody-multiple-modifiers rate + volume.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch/prosody-multiple-modifiers volume + pitch.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-multiple-modifiers volume + pitch + rate/prosody-multiple-modifiers volume + pitch + rate.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-pitch-semitones/prosody-pitch-semitones.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/prosody-rate-percent/prosody-rate-percent.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-fast/rate-standard-fast.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-medium/rate-standard-medium.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-slow/rate-standard-slow.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-fast/rate-standard-x-fast.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/rate-standard-x-slow/rate-standard-x-slow.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/say-as-modifiers last modifier wins/say-as-modifiers last modifier wins.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sections-standard/sections-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sections-standard/sections-standard.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sections-standard/sections-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sections-standard/sections-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sections-standard/sections-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sections-standard/sections-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sections-standard/sections-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sections-standard/sections-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sections-standard/sections-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sections-standard/sections-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sections-standard/sections-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sections-standard/sections-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sections-standard/sections-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/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.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-short/sub-short.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/sub-standard/sub-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/timbre-standard/timbre-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/timbre-standard/timbre-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/timbre-standard/timbre-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/time-standard/time-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/time-standard/time-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/time-standard/time-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/time-standard/time-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/time-standard/time-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/time-standard/time-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/time-standard/time-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/time-standard/time-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/time-standard/time-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/time-standard/time-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/time-standard/time-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/time-standard/time-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/unit-standard/unit-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/unit-standard/unit-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/unit-standard/unit-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/unit-standard/unit-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/unit-standard/unit-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/unit-standard/unit-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/unit-standard/unit-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/unit-standard/unit-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/unit-standard/unit-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/unit-standard/unit-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/unit-standard/unit-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/unit-standard/unit-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-azure-displayname/voice-azure-displayname.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard/voice-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard/voice-standard.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard/voice-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard/voice-standard.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard/voice-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard/voice-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard/voice-standard.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard/voice-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard/voice-standard.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard/voice-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard/voice-standard.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard/voice-standard.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard/voice-standard.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard device name/voice-standard device name.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard device name/voice-standard device name.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard device name/voice-standard device name.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard device name/voice-standard device name.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard device name/voice-standard device name.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard device name/voice-standard device name.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard device name/voice-standard device name.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard device name/voice-standard device name.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard device name/voice-standard device name.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard device name/voice-standard device name.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard device name/voice-standard device name.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard device name/voice-standard device name.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard device name/voice-standard device name.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard invalid name/voice-standard invalid name.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/voice-standard lowercase name/voice-standard lowercase name.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-loud/volume-standard-loud.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-medium/volume-standard-medium.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-silent/volume-standard-silent.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-soft/volume-standard-soft.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-loud/volume-standard-x-loud.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.apple.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.polly-neural.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.sapi.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.txt +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.w3c.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/volume-standard-x-soft/volume-standard-x-soft.watson.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/whisper-standard/whisper-standard.acapela-cloud.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/whisper-standard/whisper-standard.acapela.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/whisper-standard/whisper-standard.alexa.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/whisper-standard/whisper-standard.azure.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/whisper-standard/whisper-standard.google.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/whisper-standard/whisper-standard.polly.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/whisper-standard/whisper-standard.samsung.ssml +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/whisper-standard/whisper-standard.smd +0 -0
- {speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/tests/test-data/test-data/whisper-standard/whisper-standard.txt +0 -0
|
@@ -372,19 +372,19 @@ jobs:
|
|
|
372
372
|
target/x86_64-apple-darwin/release/libspeechmarkdown_rust.a \
|
|
373
373
|
-output "$PREP/macos-arm64_x86_64/libspeechmarkdown_rust.a"
|
|
374
374
|
strip -x "$PREP/macos-arm64_x86_64/libspeechmarkdown_rust.a"
|
|
375
|
-
cp bindings/speechmarkdown.h bindings/swift/Sources/CSpeechMarkdown/shim.h bindings/swift/Sources/CSpeechMarkdown/module.modulemap "$PREP/macos-arm64_x86_64/"
|
|
375
|
+
cp bindings/speechmarkdown.h bindings/swift/Sources/CSpeechMarkdown/include/shim.h bindings/swift/Sources/CSpeechMarkdown/module.modulemap "$PREP/macos-arm64_x86_64/"
|
|
376
376
|
|
|
377
377
|
# iOS device (arm64)
|
|
378
378
|
mkdir -p "$PREP/ios-arm64"
|
|
379
379
|
cp target/aarch64-apple-ios/release/libspeechmarkdown_rust.a "$PREP/ios-arm64/"
|
|
380
380
|
strip -x "$PREP/ios-arm64/libspeechmarkdown_rust.a"
|
|
381
|
-
cp bindings/speechmarkdown.h bindings/swift/Sources/CSpeechMarkdown/shim.h bindings/swift/Sources/CSpeechMarkdown/module.modulemap "$PREP/ios-arm64/"
|
|
381
|
+
cp bindings/speechmarkdown.h bindings/swift/Sources/CSpeechMarkdown/include/shim.h bindings/swift/Sources/CSpeechMarkdown/module.modulemap "$PREP/ios-arm64/"
|
|
382
382
|
|
|
383
383
|
# iOS simulator (arm64)
|
|
384
384
|
mkdir -p "$PREP/ios-arm64-sim"
|
|
385
385
|
cp target/aarch64-apple-ios-sim/release/libspeechmarkdown_rust.a "$PREP/ios-arm64-sim/"
|
|
386
386
|
strip -x "$PREP/ios-arm64-sim/libspeechmarkdown_rust.a"
|
|
387
|
-
cp bindings/speechmarkdown.h bindings/swift/Sources/CSpeechMarkdown/shim.h bindings/swift/Sources/CSpeechMarkdown/module.modulemap "$PREP/ios-arm64-sim/"
|
|
387
|
+
cp bindings/speechmarkdown.h bindings/swift/Sources/CSpeechMarkdown/include/shim.h bindings/swift/Sources/CSpeechMarkdown/module.modulemap "$PREP/ios-arm64-sim/"
|
|
388
388
|
|
|
389
389
|
# Create multi-platform XCFramework
|
|
390
390
|
xcodebuild -create-xcframework \
|
|
@@ -529,6 +529,7 @@ jobs:
|
|
|
529
529
|
run: |
|
|
530
530
|
git config user.name "github-actions[bot]"
|
|
531
531
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
532
|
+
git fetch origin master
|
|
532
533
|
git checkout -B master origin/master
|
|
533
534
|
git add Package.swift
|
|
534
535
|
git diff --cached --quiet || git commit -m "Update SPM binary target for ${GITHUB_REF_NAME}"
|
|
@@ -10,8 +10,8 @@ let package = Package(
|
|
|
10
10
|
targets: [
|
|
11
11
|
.binaryTarget(
|
|
12
12
|
name: "SpeechMarkdownRust",
|
|
13
|
-
url: "https://github.com/AACTools/speechmarkdown-rust/releases/download/v0.
|
|
14
|
-
checksum: "
|
|
13
|
+
url: "https://github.com/AACTools/speechmarkdown-rust/releases/download/v0.4.0/SpeechMarkdownRust.xcframework.zip",
|
|
14
|
+
checksum: "17907ec4cf11ce81681f3fdb6edb19cc025aff73e8d57942ac760852798d0ad7"
|
|
15
15
|
),
|
|
16
16
|
.target(
|
|
17
17
|
name: "CSpeechMarkdown",
|
{speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/bindings/dotnet/SpeechMarkdown.nuspec
RENAMED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<package>
|
|
3
3
|
<metadata>
|
|
4
4
|
<id>SpeechMarkdown</id>
|
|
5
|
-
<version>0.4.
|
|
5
|
+
<version>0.4.2</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>
|
|
@@ -209,7 +209,7 @@ dependencies = [
|
|
|
209
209
|
|
|
210
210
|
[[package]]
|
|
211
211
|
name = "speechmarkdown-python"
|
|
212
|
-
version = "0.4.
|
|
212
|
+
version = "0.4.2"
|
|
213
213
|
dependencies = [
|
|
214
214
|
"pyo3",
|
|
215
215
|
"serde_json",
|
|
@@ -218,7 +218,7 @@ dependencies = [
|
|
|
218
218
|
|
|
219
219
|
[[package]]
|
|
220
220
|
name = "speechmarkdown-rust"
|
|
221
|
-
version = "0.4.
|
|
221
|
+
version = "0.4.2"
|
|
222
222
|
dependencies = [
|
|
223
223
|
"quick-xml",
|
|
224
224
|
"serde",
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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
|
|
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
|
{speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/src/formatters/ssml/google_assistant.rs
RENAMED
|
File without changes
|
{speechmarkdown_rust-0.4.0 → speechmarkdown_rust-0.4.2}/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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|