MCPcopy Create free account
hub / github.com/TeleBoxOrg/TeleBox_Plugins / escapeSsmlText

Function escapeSsmlText

tts/tts.ts:66–73  ·  view source on GitHub ↗

转义 SSML 特殊字符

(text: string)

Source from the content-addressed store, hash-verified

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

Callers 1

TTSPluginClass · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected