Close this window

Using the <glossary> tag

Description The glossary tag is used to insert entries into a glossary that appears at the end of your CNXML document. These entries are definitions of terms in your document that you may not want to appear in the body of text. For more information see CNXML Reference Extensions.
Example
This CNXML:
<glossary>
  <definition id='quardef'>
    <term>quarter</term>
    <meaning>
      One fourth of something.
    </meaning>
    <example id='defex1'>
      <para id='parex1'>
        "He cut the pie into quarters and 
	gave all four people a piece."
      </para>
    </example>
  </definition>
</glossary>
	
Results in this display:
Glossary
Definition 1: quarter
One fourth of something.
Attributes (what's this?)
Children (what's this?)definition
Parents (what's this?)document
Close this window