|
1
|
<!-- if defined (as showifdef) jump to psuedo labels for :id and :att -->
|
2
|
<@{>
|
3
|
<!-- if there was an attribute called "id" you will reach here -->
|
4
|
<!--start id attribute group-->
|
5
|
<@id>
|
6
|
<!-- jump to the values of "id" -->
|
7
|
<!--start id values group-->
|
8
|
<@@{>
|
9
|
<@@chris>id value was <?tic=Blue>chris<?tic=Black>
|
10
|
<@@western>id value was <?tic=Cyan>western<?tic=Black>
|
11
|
<!-- if not a value of (Advent, 3B2) then use the following -->
|
12
|
<@@*>using (<?tic=orange>default<?tic=Black> for id value not listed)
|
13
|
<@@}>
|
14
|
<!--end values group-->
|
15
|
<!-- if there was an attribute called "att" you will reach here -->
|
16
|
<!--start att attribute group-->
|
17
|
<@att>
|
18
|
<!--start att values group-->
|
19
|
<@@{>
|
20
|
<!-- jump to the values of "att" -->
|
21
|
<@@one>att value was <?tic=Magenta>one<?tic=Black>
|
22
|
<@@two>att value was <?tic=Green>two<?tic=Black>
|
23
|
<!-- if not a value of (one,two) then use the following -->
|
24
|
<@@*>using (<?tic=yellow>default<?tic=Black> for att value not listed)
|
25
|
<@@}>
|
26
|
<!--end values group-->
|
27
|
<!-- if the any attribute other than 'id' or 'att' appear you should come here -->
|
28
|
<@*><?tic=red>UNEXPECTED ATTRIBUTE<?tic=Black> attibute
|
29
|
<!-- end of all the attributes and their values -->
|
30
|
<@}>
|
31
|