How to make cute editor not to automaticly change code

  •  02-20-2012, 2:28 AM

    How to make cute editor not to automaticly change code

    Hi,
     
    I got a mail template that has a code like this:
    1. <table>
    2. $items:{  
    3. <tr>  
    4.   <td style="font-family: Helvetica, Arial, Verdana, sans-serif;font-size:12px;color:#666;">$it.Name$</td>  
    5.   <td style="font-family: Helvetica, Arial, Verdana, sans-serif; font-size:12px;color:#666;">$it.Renewal$</td>  
    6.   <td style="font-family: Helvetica, Arial, Verdana, sans-serif; font-size:12px;color:#666; text-align:right;">$it.Price$</td>  
    7. </tr>  
    8. }$ 
    9. </table>
     But in Cute Editor it automaticly gets changed into:
    1. $items:{}$  
    2. <table>  
    3. <tr>  
    4.   <td style="font-family: Helvetica, Arial, Verdana, sans-serif;font-size:12px;color:#666;">$it.Name$</td>  
    5.   <td style="font-family: Helvetica, Arial, Verdana, sans-serif; font-size:12px;color:#666;">$it.Renewal$</td>  
    6.   <td style="font-family: Helvetica, Arial, Verdana, sans-serif; font-size:12px;color:#666; text-align:right;">$it.Price$</td>  
    7. </tr>  
    8. </table> 
     How can I change the behavior so that no automatic correction is made?
     
View Complete Thread