admin管理员组

文章数量:1344319

here is the list: .html I either want to enable all of them, or disable all of them... (aside from < and > of course)

Is there a way to do this?

there is the config.entities_additional = "", but that is a ma separated list of all the entities you want to store.

preferably, I'd like to disable the entities entirely, but setting config.entities = false; doesn't do anything. o.o

@Cheery's answer solves the situation where the editor uses the config.js file.

however,

        CKEDITOR.replace("selected_text_actual", {
            uiColor: "#F5F5F5",
            toolbar: "myToolbar",
            scayt_autoStartup: false,
            enterMode: CKEDITOR.ENTER_BR,
            forcePasteAsPlainText: true,
            forceSimpleAmpersand: true,
            height: '170px',
            entities: false,
            basicEntities: false,
            entities_greek: false,
            entities_latin: false,
            toolbarCanCollapse: false,
            resize_enabled: false,
            disableNativeSpellChecker: false,
            removePlugins: 'elementspath',
            editingBlock: false}).setData(text_for_editor);

Still has the HTML entities.

here is the list: http://www.elizabethcastro./html/extras/entities.html I either want to enable all of them, or disable all of them... (aside from < and > of course)

Is there a way to do this?

there is the config.entities_additional = "", but that is a ma separated list of all the entities you want to store.

preferably, I'd like to disable the entities entirely, but setting config.entities = false; doesn't do anything. o.o

@Cheery's answer solves the situation where the editor uses the config.js file.

however,

        CKEDITOR.replace("selected_text_actual", {
            uiColor: "#F5F5F5",
            toolbar: "myToolbar",
            scayt_autoStartup: false,
            enterMode: CKEDITOR.ENTER_BR,
            forcePasteAsPlainText: true,
            forceSimpleAmpersand: true,
            height: '170px',
            entities: false,
            basicEntities: false,
            entities_greek: false,
            entities_latin: false,
            toolbarCanCollapse: false,
            resize_enabled: false,
            disableNativeSpellChecker: false,
            removePlugins: 'elementspath',
            editingBlock: false}).setData(text_for_editor);

Still has the HTML entities.

Share Improve this question edited Mar 1, 2012 at 1:09 NullVoxPopuli asked Feb 29, 2012 at 21:52 NullVoxPopuliNullVoxPopuli 65.2k76 gold badges214 silver badges361 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

Set all of them to false:

config.entities  = false;
config.basicEntities = false;
config.entities_greek = false;
config.entities_latin = false;

本文标签: javascriptCKEDITOR how to I convert ALL html entitiesStack Overflow