기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
규칙 참조
다음 표에는 문법 문서 내에서 사용할 수 있는 다양한 형태의 규칙 참조가 요약되어 있습니다. 자세한 내용은 음성 인식 문법 사양 버전 1 W3C 권장 사항의 규칙 참조
참조 유형 | XML 양식 | 지원 |
---|---|---|
2.2.1 |
<ruleref
uri="#rulename"/> |
예 |
2.2.2 |
<ruleref
uri="grammarURI#rulename"/> |
아니요 |
2.2.2 |
<ruleref
uri="grammarURI"/> |
아니요 |
2.2.2 |
<ruleref uri="grammarURI#rulename"
type="media-type"/> |
아니요 |
2.2.2 |
<ruleref uri="grammarURI"
type="media-type"/> |
아니요 |
2.2.3 |
|
아니요 |
참고
-
문법 URI는 외부 URI입니다. 예:
http://grammar.example.com/world-cities.grxml
. -
미디어 유형은 다음과 같을 수 있습니다.
-
application/srgs+xml
-
text/plain
-
예
<rule id="city" scope="public">
<one-of>
<item>Boston</item>
<item>Philadelphia</item>
<item>Fargo</item>
</one-of>
</rule>
<rule id="state" scope="public">
<one-of>
<item>FL</item>
<item>MA</item>
<item>NY</item>
</one-of>
</rule>
<!-- "Boston MA" -> city = Boston, state = MA -->
<rule id="city_state" scope="public">
<ruleref uri="#city"/> <ruleref uri="#state"/>
</rule>