To expound some on what I had said earlier (despite its apparent lack of usefulness . . . :
Rich text, html, literal strings in various programming languages, et al., need some way to differentiate between data and instructions. For instance, in C and Java, to add a " to a string you precede it with a backslash (\"). In
VB, pairs of "s are interpreted as one literal ": ("I am Bob ""The Man"" Smith" turns into I am Bob "The Man" smith). (I just used an escape sequence to create red text. The characters "[ r e d ]" {but without the spaces} are not treated as data, but as instructions.)
I don't know a lot about rich text, but I have seen that it appears that instructions are enclosed in curly braces.
In HTML, to add a block literally (no "interpretation" by the markup engine), you use
Code:
<blockquote>
literal stuff goes here...
</blockquote>
(I told WROXâs site to be literal just above using "[ c o d e ]" and "[ / c o d e ]," again without the spaces.)
Looking into some rich-text reference work should prove more helpful than picking my brain on RTF, because (like Schultzy says repeatedly in
Hoganâs Heroes: "I know nuhthink!"; sorry.
Brian