TinyMCE可以免费使用吗?

时间:2017-09-09 16:32:33

标签: tinymce tinymce-4

我不确定我是否理解正确,但我相信有一个免费的“基本”版本,如果你想要一些高级插件和技术支持,你只需付费。

这是真的情况吗?

3 个答案:

答案 0 :(得分:21)

有关详细信息,请参阅this linkthis link

  

任何想要在商业应用或网站上使用TinyMCE的人都可以免费使用。

除此之外,代码在LGPL下获得许可,因此您可以分叉代码。只需记住在其他人可以看到的地方贡献您的更改。(例如,在github上分叉)

如果您需要支持或希望为开发做出贡献,欢迎您购买支持或获取addition plugins with the enterprise version。但只有你想要。

答案 1 :(得分:1)

截至 2021 年 1 月 3 日,我正在通过键入“npm install tinymce”从该地址安装它,根据我从该站点收到的信息,它是开源且免费的。

https://www.npmjs.com/package/tinymce

<块引用>

TinyMCE 是世界上最受欢迎的基于 Web 的开源 WYSIWYG 编辑器。

受到数百万开发者的信赖和喜爱,并集成到数千个应用程序中,例如:

内容管理系统 (CMS) 学习管理系统 (LMS) 客户关系管理 (CRM) 和营销自动化系统 电子邮件营销系统 SaaS 系统中的内容创建

tinymce 页面上写的令人困惑的“https://www.tiny.cloud/pricing”,但根据段落 COMMUNITY 它永远免费。

<块引用>

永远免费 您熟悉和喜爱的开源编辑器,永久免费并可用于商业用途。

答案 2 :(得分:-1)

使用此波纹管初始化,可以免费使用菜单栏和工具栏

 tinymce.init({
  selector: 'textarea',
  min_height: 350,
   skin: "oxide",
   icons: 'material' ,
 preview_styles: 'font-size color',
  resize: 'both',
  plugins: 'link image media code autolink lists media table',
  toolbar: 'undo redo | styleselect| forecolor  | bold italic | alignleft aligncenter alignright alignjustify | outdent indent | link image media| code table',
  toolbar_mode: 'floating',
   /* enable title field in the Image dialog*/
  image_title: true,
  /* enable automatic uploads of images represented by blob or data URIs*/automatic_uploads: true,images_upload_url: 'postAcceptor.php',file_picker_types: 'image',

  tinycomments_mode: 'embedded',
  tinycomments_author: 'Author name'
  
});