xmldocs: Improve examples.

Use example tags instead of regular para tags
where possible.

ASTERISK-30090

Change-Id: Iada8bbfda08f30b118cedf2d040bbb21e4966ec5
This commit is contained in:
Naveen Albert
2022-06-01 01:43:52 +00:00
committed by Joshua Colp
parent 31dc28ab09
commit 51d262af12
23 changed files with 353 additions and 243 deletions

View File

@@ -59,11 +59,24 @@
<description>
<para>The VOLUME function can be used to increase or decrease the <literal>tx</literal> or
<literal>rx</literal> gain of any channel.</para>
<para>For example:</para>
<para>Set(VOLUME(TX)=3)</para>
<para>Set(VOLUME(RX)=2)</para>
<para>Set(VOLUME(TX,p)=3)</para>
<para>Set(VOLUME(RX,p)=3)</para>
<example title="Increase volume">
same => n,Set(VOLUME(TX)=3)
</example>
<example title="Increase volume">
same => n,Set(VOLUME(RX)=2)
</example>
<example title="Increase volume with DTMF control">
same => n,Set(VOLUME(TX,p)=3)
</example>
<example title="Increase RX volume with DTMF control">
same => n,Set(VOLUME(RX,p)=3)
</example>
<example title="Decrease RX volume">
same => n,Set(VOLUME(RX)=-4)
</example>
<example title="Reset to normal">
same => n,Set(VOLUME(RX)=0)
</example>
</description>
</function>
***/