Re: TinyMCE内でのタグについて

2012年7月14日 at 17:14

concrete/blocks/content/editor_config.php を blocks/content/editor_config.php でオーバーライドして許可された要素の設定を追加できます。例えば、section要素を許可したい場合はこうなります

tinyMCE.init({
extended_valid_elements : "section[class|id|style|title]", // この行を追加


許可された要素の初期設定はこちらにあります。

TinyMCE - valid_elements