使用yii2-ckeditor-widget自定义ckeditor以接受html和body标签

时间:2015-07-07 05:29:05

标签: widget ckeditor customization yii2

我正在使用2个amigos ckeditor小部件

<?= $form->field($model, 'text')->widget(CKEditor::className(), [
    'options' => ['rows' => 6],
    'preset' => 'basic'
]) ?>

如何添加配置设置,我希望编辑器接受编辑器通常剥离的HTML标签hTML和正文。我在哪里可以在窗口小部件中指定此设置。

2 个答案:

答案 0 :(得分:3)

有一个名为compile 'com.android.support:multidex:1.0.0的特殊属性用于设置插件选项。

对于使用clientOptions选项过滤代码,您可以阅读官方文档here

以下是代码示例:

allowedContent

答案 1 :(得分:0)

所以我添加了配置name并且它有效。