newline tag is used to create an explicit line break in a body of text. It can also be used to
insert one or more blank lines in the document.
This CNXML:
<para id="favorite-lyric">
<quote display="inline">All we
are is dust in the wind.</quote>
<newline />
- <cite>Kansas</cite>
</para>
Results in this display:
This CNXML:
<exercise id="exercise1">
<problem id="ex1problem">
<para id="ex1para">
Name three ways you can conserve water at home.
<newline count="2" />
1.
<newline count="2" />
2.
<newline count="2" />
3.
</para>
</problem>
</exercise>
<exercise id="exercise2">
<problem id="ex2problem">
<para id="ex2para">
In the space below, explain why water
conservation is important for the environment.
<newline count="5" effect="underline" />
</para>
</problem>
</exercise>
Results in this display:
Name three ways you can conserve water at home.
1.
2.
3.
In the space below, explain why water conservation is important for the environment.
newline tag is an empty tag and does
not contain any children.