从tinymce编辑器中删除功能

时间:2017-09-25 07:31:14

标签: jquery html css tinymce

我曾经使用过编辑器。 https://www.tinymce.com/

但是,不幸的是我需要删除一些默认工具,如(文件,编辑等)。

1 个答案:

答案 0 :(得分:1)

您可以删除下面的菜单

let attributedStringArray = components.map{ item -> NSAttributedString?  in

    guard let range = notAttributedString.lowercased().range(of:item) else {
        return nil
    }

    let nsRange = notAttributedString.nsRange(fromRange: range)
    return attributedString.attributedSubstring(from: nsRange)
}.flatMap{$0}
相关问题