<paragraph> or <p>

The <paragraph> tag tells the TTS engine to change the prosody to reflect the end of a paragraph, regardless of the surrounding punctuation.

Attributes
xml:lang Can be set to "en_us" or "fr_fr".


Child Tags
<audio>, <break>, <emphasis>, <enumerate>, <mark>, <phoneme>, <prosody>, <s>, <say-as>, <sentence>, <speak>, <sub>, <value>, <voice>


Parent Tags
<audio>, <enumerate>, <foreach>, <prompt>, <prosody>, <speak>, <voice>


Notes
none


Example
<?xml version="1.0" encoding="latin-1"?>
<vxml version="2.0">
<form>
<block>
<prompt>
<paragraph>
Here's one paragraph.
</paragraph>
<paragraph xml:lang="fr_fr">
Voici un autre paragraphe en français.
</paragraph>
</prompt>
</block>
</form>
</vxml>

The output of the above script would be:

Computer: Here's one paragraph.
Computer: (in French) Voici un autre paragraphe en français.