Rich Text Field Editor and Tag support

Rich Text Field Editor and Tag support

Why is there no HTML editor for RTF fields?  You can insert HTML code, but you can't edit the entire field.  The Notes filed has is, but not the RTF filed.  The tools available don't allow it to do much.

I worked around this by creating a multi-line text field.  On the click of a decision box the HTML code is copied to the multi-line field, ediited there, on the click of another box it is copied back.  Works pretty well, but I find not all tags are supported. 

I want to do a nested outlined list.  This code:

<ol type="1">
<li>This</li>
<li>is</li>
<li>a
<ol type="a">
<li>list</li>
<li>of</li>
</ol>
</li>
<li>items</li>
</ol>

should display this nested list with the sub-list as a,b, as shown:
  1. This
  2. is
  3. a
    1. list
    2. of
  4. items
However it shows 1,2,3.  It seems when the code with the <ol type="a"> is copied into the RTF filed, the type tag is stripped out.  Why?