A simple example as to how to annotate the text.
Annotation is important and is to be done before you use any of the MAWC commands. These commands look for the <ts>, <is>, <as> and <vs> tags in the pages to execute.
Here is an example, which demonstrates this.
_______________________________________________________________________________________________________________________________
Text:
_______________________________________________________________________________________________________________________________
<html>
<body>
This is a sample.
<a href="#start">CLICK HERE</a> to go to the start of the page.
Here is an Image Tag <img src="xyz.jpg" align="right">
<a name="start"></a>
This is the start of the document.
</body>
</html>
_______________________________________________________________________________________________________________________________
After Annotation:
_______________________________________________________________________________________________________________________________
<html>
<body>
<ts>
This is a sample.
<ts1>
<a href="#start">CLICK HERE</a>
</ts1>
to go to the start of the page.
Here is an Image Tag
<is>
<img src="xyz.jpg" align="right">
</is>
<ts1>
<a name="start"></a>
This is the start of the document.
</ts1>
</ts>
</body>
</html>
_______________________________________________________________________________________________________________________________
The TAGS that the user is supposed to insert are highlighted in color. The rules for adding tags are like:
Some bugs associated with the current version:
<ts><a href> RIGHT
<ts> <a href> WRONG
_______________________________________________________________________________________________________________________________
So the Above Annotated Text should look like
_______________________________________________________________________________________________________________________________
<html>
<body>
<ts>
This is a sample.
<ts1><a href="#start">CLICK HERE</a></ts1>
to go to the start of the page.
Here is an Image Tag
<is><img src="xyz.jpg" align="right"></is>
<ts1>
<a name="start"></a>
This is the start of the document.
</ts1>
</ts>
</body>
</html>
_______________________________________________________________________________________________________________________________