XmlException: 名称中不能包含字符“=”

XmlException: Character '=' may not be contained within a name

SAPI5 结合标志 SVSFIsXML 允许插入自定义标签,例如以这样的形式:

 <customtag>Speak this text</customtag>

此标签将被识别为

FragList->State.eAction == SPVA_ParseUnknownTag

但是,当我使用新标准 SSML 时,以下 XML 代码会引发错误

Invalid XML content:
Inner Exception: XmlException: The character '=' (hex value 0x3D) may not be contained within a name. Line 1, position 126.

这是代码:

<speak version='1.0' xmlns="http://www.w3.org/2001/10/synthesis" xml:lang='en-US'>
<voice name='Microsoft Sam'>
<customtag="1">
 Speak this text!
</customtag>
</voice>
</speak>

下面的 XML 代码引发了不同的错误:

System.FormatException: The element "customtag" is invalid.

这是代码:

<speak version='1.0' xmlns="http://www.w3.org/2001/10/synthesis" xml:lang='en-US'>
<voice name='Microsoft Sam'>
<customtag>
 Speak this text!
</customtag>
</voice>
</speak>

如果我删除自定义标签,它就可以正常工作。

我的代码中是否存在任何明显的 XML 错误,或者使用自定义标签是否不再有效?

谢谢。

语法 <customtag="1"> 格式不正确 XML。我不知道您使用的是什么工具,但它们似乎允许您创建格式错误的 XML,显然无法解析。

Is there any obvious XML error in my code

<customtag="1"> 是一个明显的错误。元素名称不是属性,不能有值。

or does using custom tags simply not work anymore?

XML 的重点是允许设计自定义标记语言。

您似乎有一个语音合成文档,它使用了使用 XML 设计的自定义标记语言。

'The element "customtag" is invalid ' 错误消息指出 customtag 在语音合成文档中是不允许的。

可以设计语音合成 + 其他标记语言,但您的工具并未对此进行测试。需要纯语音合成文档。