I'm trying to use a ColdFusion<cftextarea richedit="true">  tag that uses FCKEditor 2.x, to feed into a textfield in <cfreportparam> which only understands the <FONT> tag, not the <span style=""> that FCKEditor 2.x generates.
How can I customize fckconfig.js to have FCKEditor 2.x generates <FONT face="" size="" color="">开发者_高级运维; ??
This link should be related: http://docs.cksource.com/FCKeditor_2.x/Developers_Guide/Configuration/Configuration_Options/CoreStyles
Thank you
Found it!  Append the following code to fckconfig.js
FCKConfig.CoreStyles['FontFace'] = 
{ 
    Element     : 'font', 
    Attributes : { 'face' : '#("Font")' }
};
FCKConfig.CoreStyles['Size'] = 
{ 
    Element     : 'font', 
    Attributes : { 'size' : '#("Size","fontSize")' }
};
FCKConfig.CoreStyles['Color'] = 
{ 
    Element     : 'font', 
    Attributes : { 'color' : '#("Color","color")' }
};
FCKConfig.FontSizes = '1/xx-small;2/x-small;3/small;4/medium;5/large;6/x-large;7/xx-large' ;
source: http://drupal.fckeditor.net/filters
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论