forked from bofh/fetsite
112 lines
3.9 KiB
YAML
Executable File
112 lines
3.9 KiB
YAML
Executable File
default:
|
|
theme_advanced_toolbar_location: top
|
|
theme_advanced_toolbar_align: left
|
|
theme_advanced_statusbar_location: bottom
|
|
theme_advanced_buttons1_add_before:
|
|
- h2
|
|
- h3
|
|
- h4
|
|
- separator
|
|
theme_advanced_buttons3_add:
|
|
- tablecontrols
|
|
- fullscreen
|
|
plugins:
|
|
- table
|
|
- fullscreen
|
|
- image
|
|
- textcolor
|
|
- link
|
|
- code
|
|
- autoresize
|
|
# - advimage
|
|
# - heading
|
|
heading_clear_tag: p
|
|
image_list: [ {title: "logo", value: "/logo2014_64.png"}
|
|
]
|
|
width: "100%"
|
|
content_css: "/assets/tinymce.css"
|
|
toolbar:
|
|
- styleselect removeformat | bold boldred_btn italic forecolor | list link image table | bullist numlist | alignleft aligncenter alignright alignjustify | undo redo | fullscreen code
|
|
formats:
|
|
boldred: {selector: "p",block: "p", classes: "mc-important"}
|
|
setup: function(ed) {
|
|
ed.addButton('boldred_btn', {title:'Bold-Red',icon:"fa fa-red fa-bold", onclick:function() {ed.focus();ed.formatter.toggle('boldred'); }});
|
|
}
|
|
relative_urls: false
|
|
inline_simple:
|
|
selector: ".editable_simple"
|
|
inline: true
|
|
fixed_toolbar_container: "#toolBar"
|
|
toolbar:
|
|
- undo redo
|
|
menubar: false
|
|
inline_div:
|
|
selector: "div.editable"
|
|
inline: true
|
|
fixed_toolbar_container: "#toolBar"
|
|
theme_advanced_toolbar_location: bottom
|
|
theme_advanced_toolbar_align: left
|
|
theme_advanced_statusbar_location: bottom
|
|
theme_advanced_buttons1_add_before:
|
|
- h2
|
|
- h3
|
|
- h4
|
|
- separator
|
|
theme_advanced_buttons3_add:
|
|
- tablecontrols
|
|
- fullscreen
|
|
plugins:
|
|
- table
|
|
- fullscreen
|
|
- image
|
|
- textcolor
|
|
- link
|
|
- code
|
|
- autoresize
|
|
- visualblocks
|
|
- template
|
|
# - advimage
|
|
# - heading
|
|
heading_clear_tag: p
|
|
image_list: [ {title: "logo", value: "/logo2014_64.png"}
|
|
]
|
|
style_formats:
|
|
- {title: "Headers", items: [ {title: "Header 2", format: "h2"}, {title: "Header 3", format: "h3"}, {title: "Header 4", format: "h4"}, {title: "Header 5", format: "h5"}, {title: "Header 6", format: "h6"}]}
|
|
- {title: "Important", format: "boldred"}
|
|
- title: "Inline"
|
|
items:
|
|
- {title: "Bold", icon: "bold", format: "bold"}
|
|
- {title: "Italic", icon: "italic", format: "italic"}
|
|
- {title: "Underline", icon: "underline", format: "underline"}
|
|
- {title: "Strikethrough", icon: "strikethrough", format: "strikethrough"}
|
|
- {title: "Superscript", icon: "superscript", format: "superscript"}
|
|
- {title: "Subscript", icon: "subscript", format: "subscript"}
|
|
- {title: "Code", icon: "code", format: "code"}
|
|
- title: "Blocks"
|
|
items:
|
|
- {title: "Paragraph", format: "p"}
|
|
- {title: "Blockquote", format: "blockquote"}
|
|
- {title: "Div", format: "div"}
|
|
- {title: "Pre", format: "pre"}
|
|
- title: "Alignment"
|
|
items:
|
|
- {title: "Left", icon: "alignleft", format: "alignleft"}
|
|
- {title: "Center", icon: "aligncenter", format: "aligncenter"}
|
|
- {title: "Right", icon: "alignright", format: "alignright"}
|
|
- {title: "Justify", icon: "alignjustify", format: "alignjustify"}
|
|
formats:
|
|
boldred: {selector: "p",block: "p", classes: "mc-important"}
|
|
content_css: "/assets/tinymce.css"
|
|
toolbar:
|
|
- template styleselect removeformat | bold boldred_btn italic forecolor | list link image table | bullist numlist | alignleft aligncenter alignright alignjustify | undo redo | fullscreen code
|
|
setup: function(ed) {
|
|
ed.addButton('boldred_btn', {title:'Bold-Red',icon:"fa fa-red fa-bold", onclick:function() {ed.focus();ed.formatter.toggle('boldred'); }});
|
|
ed.on('NodeChange',function(){$($("#"+ed.id).attr("data-target")).val(this.getContent())})
|
|
}
|
|
relative_urls: false
|
|
menubar: "edit insert view format table tools"
|
|
templates:
|
|
- title: "Test"
|
|
content: '<span id="sdf">sdf</span>'
|
|
- title: 'ooo'
|
|
content: '<div class="article"><p>Article</p></div>' |