Specifies general information about the SSML document rather than specifying the document's content. The <meta> element can specify a property of the document as a whole, or it can specify HTTP response headers. Note that the <Metadata> element provides a more general and powerful treatment of metadata information than <meta>, by using a metadata schema.
Note: A <meta> element exists as well for VoiceXML documents (see VoiceXML <meta>), and for grammars.
<meta
name="string"
http-equiv="string"
content="string"/>
|
|
Attribute |
Description |
|
name |
The name of the metadata property. Exactly one of name or http-equiv must be specified. |
|
http-equiv |
The name of an HTTP response header. Exactly one of name or http-equiv must be specified. |
|
content |
The value of the metadata property. Required. |
|
Name |
Description |
|
seeAlso |
Specifies a resource that might provide additional metadata information about the content. |
Audio Enumerate ForEach Prompt Speak
None
To include speech markup tags, insert the SSML tags inside one of the <prompt>, <audio>, <enumerate>, or <foreach> (within <prompt>) elements.
<prompt> <meta name="seeAlso" content="http://example.com/my-ssml-metadata.xml"/> <meta http-equiv="Cache-Control" content="no-cache"/> Hello, world! </prompt> |