TEditor

一款新的基于div属性来开源的编辑器,使用typescript来编写

具有丰富的可扩展性

  const options={
      // 一些属性配置参数
  }
  const editor = new TEditor(options)

方便的可扩展插件功能

方便的插件开发支持

  const myPlugin = function(){
      // to do.....
  } 
  editor.PluginManager.add(myPlugin)

方便的ui控件支持

  class button {
      constructor(options){
          this.icon = options.icon;
          // ……
      }
  }

使用优雅的typescript编写,目前只计划开发PC端

ps: 加入开发联系作者

通过icloud邮箱联系我: [email protected]

你可能感兴趣的:(TEditor)