添加属性为tinymce格式

时间:2017-02-18 15:23:17

标签: tinymce-4

我要将val lambda = (list: List[Int]) => { def _inner(list: List[Int], index: Int, indexList: List[Int]) = { list match { case Nil => indexList case elem :: tail => { if (elem > 10) _inner(tail, index + 1, index +: indexList) else _inner(tail, index + 1, indexList) } } } _inner(list, 0, List.empty[Int]).reverse } 添加到dir:left代码。

code

我知道from here如何将样式添加到自定义格式,但我需要将此属性(不是样式)添加到所有<code dir="left">my inline code </code> 标记

1 个答案:

答案 0 :(得分:1)

ok.i发现了。只需要为tinymce创建一个新的插件:

tinymce.PluginManager.add('stylebuttons', function (editor, url) {
  ....
onClick: function () {
         ....
                tinymce.activeEditor.dom.setAttrib(tinyMCE.activeEditor.dom.select('code'), 'dir', 'left');

        },
}