I'm trying to create an automatic logging process. One of the things I really want is the rollover timestamp that works in the output window. So my idea was to use the acronym html tagset.
Output preamble: <acronym title="%x %X">
Output postamble: </acronym>
This is what I thought would work. However I get the output:
<acronym title="09/29/2012 12:59:26 AM"></font><font color="#C0C0C0">Your song makes your work go easier.
</acronym><acronym title="09/29/2012 12:59:26 AM">
</acronym></font>
This doesn't work because of the ordering "<acronym blah><font>text</acronym></font>". This ends up working better, but it's a post fix in order to make it work.
</font><acronym title="09/29/2012 12:59:26 AM"><font color="#C0C0C0">Your song makes your work go easier.
</acronym></font><acronym title="09/29/2012 12:59:26 AM">
</acronym>
Output preamble: <acronym title="%x %X">
Output postamble: </acronym>
This is what I thought would work. However I get the output:
<acronym title="09/29/2012 12:59:26 AM"></font><font color="#C0C0C0">Your song makes your work go easier.
</acronym><acronym title="09/29/2012 12:59:26 AM">
</acronym></font>
This doesn't work because of the ordering "<acronym blah><font>text</acronym></font>". This ends up working better, but it's a post fix in order to make it work.
</font><acronym title="09/29/2012 12:59:26 AM"><font color="#C0C0C0">Your song makes your work go easier.
</acronym></font><acronym title="09/29/2012 12:59:26 AM">
</acronym>