转义 SSML 特殊字符
(text: string)
| 64 | return cleanedText.trim(); |
| 65 | } |
| 66 | |
| 67 | /** 转义 SSML 特殊字符 */ |
| 68 | function escapeSsmlText(text: string): string { |
| 69 | return text |
| 70 | .replace(/&/g, "&") |
| 71 | .replace(/</g, "<") |
| 72 | .replace(/>/g, ">") |
| 73 | .replace(/"/g, """) |
| 74 | .replace(/'/g, "'"); |
| 75 | } |
| 76 |