After having spent an unreasonable amount of time parsing the
.qtb and
.cfn files to extract the templates, and learning in the process entirely too much about the way they store versions and encodings, I discover that the proper way to do what I want is: open the template of interest in the editor, ensure that
Format | HTML is selected, then press F9 to get the HTML source code editor.
From there you can copy and paste the template into a file and use the command line option
/ADD to attach that file to another account. To my amazement, that gets correctly interpreted as an html template and not as plain text.
And if anyone reading this is prompted to exclaim
Oh, but that is obvious, then it might be well to remember that it is generous to explain things to a puzzled beginner, however obvious they might seem to you.
This has also led to a useful discovery. I had thought that The Bat!'s infuriating habit of switching to monospace whenever you add a linebreak into the middle of a message was a bug in the editor. But it isn't. It's because the standard CSS prologue, that you normally can't see, sets all instances of
<p> to 9-point Consolas. And when you put a new blank line in the middle of a paragraph, the editor (of course) provides a
<p> tag for it.
The Bat! silently supplies this CSS in an html
<head> tag for every template. I think what the CSS specifies is, to be polite, retro, with everything monospace except the signature. Now we can all agree that that is a matter of taste. But since it
is a matter of taste, it ought to be possible to permanently set it to something else, rather than having to override it in every template.
And it would be nice to know (without having to work it out by trial and error) under what circumstances the template processor invokes the tags
- <blockquote class="rt">
- <blockquote class="email-signature">
- <p class="email-signature"> (and what makes it different from <blockquote>?)
- <PRE class="RFCHeader">
- <A class="quote-odd">
- <A class="quote-even">
- <A class="quote-text-odd">
- <A class="quote-text-even">
But experience suggests not to even bother to ask, so I won't.