`, ``, ``, ``, etc: markup dropped, text spoken
- Malformed SSML is a 400, non-SSML passes through unchanged
- DTDs are refused and nesting past `SSML_MAX_DEPTH` (10) is a 400; no dialect uses a DTD, real documents nest 2-5
- Prefixed names (`google:style`, `mstts:express-as`, `amazon:effect`) need their `xmlns:` on ``, vendor docs often omit it
- `GET /dev/ssml` serves these tables as data, read off the translator itself
```bash
curl -s http://localhost:8880/dev/ssml -H "Content-Type: application/json" \
-d '{"text": "The city of Worcester is easy.See?"}'
# {"text": "The city of [Worcester](/wˈʊstər/) is easy. [pause:1.0s] See?"}
```