Yii2 redactorで、html、head、body、metaタグなどを含む完全なhtmlサポートを使用する可能性はありますか?または、これらのタグを許可する別のWYSIWYGエディターがありますか?
tinymce yii2 widgetを使用して完全なhtmlコンテンツを配置できます。次の例をご覧ください。
<?= $form->field($model, 'description')->widget(TinyMce::className(), [
'options' => ['rows' => 6],
'language' => 'ar',
'clientOptions' => [
'plugins' => [],
'toolbar' => "forecolor | undo redo | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image"
]
]);?>
ここでは、好きなオプションを使用または追加できます。
または、
CKEditorウィジェットを使用できます
<?= $form->field($model, 'description')->widget(CKEditor::className(), [
'options' => ['rows' => 6],
'preset' => 'full',
'clientOptions' => ['allowedContent' => true]
]) ?>
このウィジェットはCKEditorを使用しており、フルHTMLオプションにアクセスするためのオプションとしてプリセットフルを渡すことができます。
または、編集者を使用する必要がある場合は、次のような編集構成のカスタムクライアントjsコードを配置する必要があります。
$R('#content', {
source: {
codemirror: {
lineNumbers: true
}
}
});
この機能を探します:
here。