我正在尝试使用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
如何做到这一点?
答案 0 :(得分:0)
Make sure to use the version 4.0 documentation,因为我假设您使用的是最新版本的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"