1

我正在尝试使用tinymce-rails。我不确定如何设置 tinymce.yml 文件,文档并没有真正解释太多。我遇到的主要问题是设置插件配置。例如,如何设置,

insertdate_dateformat: "%Y-%m-%d"

对于以下插件:

- insertdatetime

YAML 如下:

theme_advanced_toolbar_location: top
theme_advanced_toolbar_align: left
theme_advanced_statusbar_location: bottom
theme_advanced_buttons3_add:
  - tablecontrols
  - fullscreen
plugins:
  - table
  - fullscreen
  - insertdatetime

如何才能做到这一点?

4

1 回答 1

0

确保使用 4.0 版文档,因为我假设您使用的是最新版本的 gem。在其他变化中,不再存在一个高级主题,它被称为现代。

此外,您不再需要指定 theme_blabla。因此,尝试将您的 yaml 编写为:

toolbar_location: top
toolbar_align: left
statusbar_location: bottom
buttons3_add:
  - tablecontrols
  - fullscreen
plugins:
  - table
  - fullscreen
  - insertdatetime
insertdate_dateformat: "%Y-%m-%d"
于 2013-10-02T18:14:18.477 回答