Placement of comments

When I write a comment in HTML by hand, I usually place it before some 
construct, similar to how I would do it in a programming language.

Example:

<h1>document title</h1>
<p>bla bla bla</p>

<!-- very big table -->
<table>
....
</table>


Amaya keeps comments, but it insists on moving them from immediately 
before the next construct to immediately after the previous construct. 
The above example turns into:

<h1>document title</h1>
<p>bla bla bla</p>
<!-- very big table -->

<table>
....
</table>

This looks rather inappropriate when looking at the source again. If 
there's some frequent use of comments after (rather than before) a 
construct, I'd like to know. Otherwise, it'd be really nice if this were 
fixed, thanks!

Regards,   Martin.

-- 
#-# Martin J. Dürst, Professor, Aoyama Gakuin University
#-# http://www.sw.it.aoyama.ac.jp   mailto:duerst@it.aoyama.ac.jp

Received on Monday, 18 January 2010 10:04:56 UTC