Specifies metadata about the pronunciation lexicon document. Metadata is information about a document in contrast to the document content.
Syntax
| XML | Copy Code |
|---|---|
<meta name = "seeAlso" http-equiv = "string" content = "string" /> | |
Attributes
Attribute | Description |
|---|---|
name | Optional. Specifies the property name of the metadata. The only value accepted is seeAlso. All meta elements must specify a name attribute or an http-equiv attribute, but not both. |
http-equiv | Optional. Binds the meta element to the HTTP response header, specifying information that should be included in that response header. All meta elements must specify a name attribute or an http-equiv attribute, but not both. Use only values that are known by the Web server or defined in the Document Type Definition (DTD). |
content | Required. Specifies the value of the metadata property identified by the name attribute. |
Remarks
The meta element must occur before all lexeme elements contained with the root lexicon element.
Example
| XML | Copy Code |
|---|---|
<?xml version="1.0" encoding="UTF-8"?>
<lexicon version="1.0"
xmlns="http://www.w3.org/2005/01/pronunciation-lexicon"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2005/01/pronunciation-lexicon
http://www.w3.org/TR/2007/CR-pronunciation-lexicon-20071212/pls.xsd"
alphabet="ipa" xml:lang="en-US">
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta name="seeAlso" content="http://example.com/my-pls-metadata.xml"/>
<!-- Begin adding lexemes here. -->
</lexicon>
| |