2013-07-18 49 views
1

我正在嘗試使用tinymce-rails。我不確定如何設置tinymce.yml文件,並且文檔沒有真正解釋太多。我遇到的主要問題是設置插件配置。例如,如何將一個安裝程序,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

Make sure to use the version 4.0 documentation,因爲我假設您使用的是最新版本的寶石。在其他變化中,不再有高級主題,它被稱爲現代主義。

此外,您不需要指定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"