LoginSignup
1
0

More than 5 years have passed since last update.

tinyMCE で勝手にtableタグに付いてしまう border 属性を除去したい

Posted at

確認バージョン

TinyMCE 4.9.2

実施内容

参考:
https://www.tiny.cloud/docs/plugins/table/#table_default_attributes

ソースを見ると、table プラグインの Setting.ts で defaultAttributes 内で border 属性指定していた。
初期化時に、 table_default_attributes で定義そのものを上書きしてしまう。

  tinyMCE.init({
    ...
    table_default_attributes: {
        // border: '1', 
    },
...
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0