We first learned about <term> tags in last week's post, which for some reason posted under the wrong date. At the blog.cnx.org homepage you need to scroll down a bit to see it.
Each module can contain a glossary at the end of the module, containing definitions of important terms used in the module. Now, if you are using our Edit-in-Place online editor, you will notice that there is no "Glossary" option in the "insert" dropdown menu. For this, we need to bring out the big guns. Switch to the Full Source Editor by clicking on the link just above the editing area, as pictured below:

A glossary must go at the end of the module, so scroll down to the end of the text where you will find a </content> tag. After that tag, put in your glossary tags. It will look like this:
...
</content>
<glossary></glossary>Between your opening and closing tags, you will have one or more <definition> tags. Each definition must contain one <term> tag (that's the term you are defining), and at least one <meaning>. It can also (optionally) contain one or more examples (examples follow the relevant meaning that they illustrate) and further references (<seealso>, which should be the last item in the <definition>). Be sure to give a unique id to each element that needs one.
To illustrate:
<glossary>
<definition id="cnxdef">
<term>Connexions</term>
<meaning id="cnxdef-part1">An online repository of open educational resources licensed under the <link url="http://creativecommons.org/">Creative Commons</link> CC-by license, powered by a unique content management system and editing interface called <link url="http://rhaptos.org/">Rhaptos</link>.</meaning>
<example>
<para id="cnxdef-part1-para">Are you using a textbook on Connexions for your class?</para>
</example>
<meaning id="cnxdef-part2">The British spelling of Am. 'connections'.</meaning>
<seealso>
<term>OER</term>
<term>repository</term>
</seealso>
</definition>
</glossary>Click "Save" and move back to "Edit-in-Place" to continue editing your module. The above code results in this excellent display:

For extra coolness, you can link any terms you use in your module text directly to the definition in the glossary, using the linking techniques we learned two weeks ago. Link to the target-id of the definition:
Everyone should study with <link target-id="cnxdef">Connexions</link>!




