我想为TinyMCE添加自定义格式化块,我可以使用下面的代码来完成它。
style_formats: [
{title : 'Code', block : 'pre', classes : 'pre-code', exact: true},]
https://codepen.io/anon/pen/vWRGEg
但是,通过添加此代码,唯一的代码块在格式下拉列表中可见。 有一些默认选项,例如
https://codepen.io/anon/pen/jazqEv
是否可以在Block下添加自定义代码块 - >前节?
答案 0 :(得分:2)
试试这个jsfiddle
style_formats: [
{ title: 'Headers', items: [
{ title: 'test', block: 'h1' },
{ title: 'h2', block: 'h2' },
{ title: 'h3', block: 'h3' },
{ title: 'h4', block: 'h4' },
{ title: 'h5', block: 'h5' },
{ title: 'h6', block: 'h6' }
] },
{ title: 'Blocks', items: [
{ title: 'p', block: 'p' },
{ title: 'div', block: 'div' },
{ title: 'pre', block: 'pre' }
] },
{ title: 'Containers', items: [
{ title: 'section', block: 'section', wrapper: true, merge_siblings: false },
{ title: 'article', block: 'article', wrapper: true, merge_siblings: false },
{ title: 'blockquote', block: 'blockquote', wrapper: true },
{ title: 'hgroup', block: 'hgroup', wrapper: true },
{ title: 'aside', block: 'aside', wrapper: true },
{ title: 'figure', block: 'figure', wrapper: true }
] }
],
visualblocks_default_state: true,
end_container_on_empty_block: true
答案 1 :(得分:1)
为了与docs
的现有使用style_formats_merge: true
合并