How can annotate a document

akc - Saturday, September 20, 2008 10:19:19 AM

What is annotation of a document?

You can include an html section at the top of your document that will be stripped off and placed in the right hand gutter with other menus for seamless aesthetics.

akc - Saturday, September 20, 2008 10:20:07 AM

The first line of your document should be the following statement


<!--process-->

akc - Saturday, September 20, 2008 10:21:17 AM

Then include the annotation section in a capture tag as follows


<!--tag_bgn capture aspire_annotation -->
<p>hello world. Place this on the right hand side</p>
<!--tag_end capture aspire_annotation -->

akc - Saturday, September 20, 2008 10:22:36 AM

Together the completed document may look like


<!--process-->
<!--tag_bgn capture aspire_annotation -->
<p>hello world. Place this on the right hand side</p>
<!--tag_end capture aspire_annotation -->

<p>
Rest of the inline document content goes here
</p>

akc - Saturday, September 20, 2008 10:23:42 AM

Here is a more complete example making use of the right hand menu structure


<!--process-->
<!--tag_bgn capture aspire_annotation -->

<div class="pagemenu1">
<p class="header">Page Menu</p>
<p><a href="javascript:alert('todo')">
Google
</a></p>
</div>

<!--tag_end capture aspire_annotation -->

<p>
Rest of the inline document content goes here
</p>