> For the complete documentation index, see [llms.txt](https://docs.plumvoice.com/dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.plumvoice.com/dev/voicexml/tags/paragraph-tag.md).

# \<paragraph>

## \<paragraph> <a href="#paragraph" id="paragraph"></a>

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

{% hint style="info" %}
The `<paragraph>` tag can be abbreviated as `<p>`.
{% endhint %}

### Attributes

<table><thead><tr><th width="161.33333333333331">Name</th><th width="154">Data type<select><option value="3e89c20b26f34bc080e2fd603ccceaa4" label="String" color="blue"></option><option value="dfb6c2e4b3f447a1bed89f4e8871ac90" label="Integer" color="blue"></option><option value="655092067ca245759a89e69209e92778" label="Boolean" color="blue"></option></select></th><th>Description</th></tr></thead><tbody><tr><td>xml:lang</td><td><span data-option="3e89c20b26f34bc080e2fd603ccceaa4">String</span></td><td>Can be set to “en_us” or “fr_fr”.</td></tr></tbody></table>

### Notes

None

### Example

```markup
<?xml version="1.0" encoding="utf-8"?>
<vxml version="2.0">
  <form>
    <block>
      <prompt>
        <paragraph>
          Here's one paragraph.
        </paragraph>
        <paragraph xml:lang="fr-CA">
          Voici un autre phrase en français.
        </paragraph>
      </prompt>
    </block>
  </form>
</vxml>
```

The output of the above script would be:\
(Note: This example uses Nuance RealSpeak 4.0 as the TTS Engine)

> Computer: Here's one paragraph.\
> Computer: (in French) Voici une phrase en français.

### Child Tags

[\<audio>](/dev/voicexml/tags/audio-tag.md), [\<break>](/dev/voicexml/tags/break-tag.md), [\<emphasis>](/dev/voicexml/tags/emphasis-tag.md), [\<enumerate>](/dev/voicexml/tags/enumerate-tag.md), [\<mark>](/dev/voicexml/tags/mark-tag.md), [\<phoneme>](/dev/voicexml/tags/phoneme-tag.md), [\<prosody>](/dev/voicexml/tags/prosody-tag.md), [\<say-as>](/dev/voicexml/tags/say-as-tag.md), [\<sentence>](/dev/voicexml/tags/sentence-tag.md), [\<speak>](/dev/voicexml/tags/speak-tag.md), [\<sub>](/dev/voicexml/tags/sub-tag.md), [\<value>](/dev/voicexml/tags/value-tag.md), [\<voice>](/dev/voicexml/tags/voice-tag.md)

### Parent Tags

[\<audio>](/dev/voicexml/tags/audio-tag.md), [\<enumerate>](/dev/voicexml/tags/enumerate-tag.md), [\<foreach>](/dev/voicexml/tags/foreach-tag.md), [\<prompt>](/dev/voicexml/tags/prompt-tag.md), [\<prosody>](/dev/voicexml/tags/prosody-tag.md), [\<speak>](/dev/voicexml/tags/speak-tag.md), [\<voice>](/dev/voicexml/tags/voice-tag.md)
