我要将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>
标记
答案 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');
},
}