Django 中 HTMLFields tinyMCE 的大小
Size of the HTMLFields tinyMCE in Django
我最近刚刚成功安装了文本编辑器 tinyMCE 并使用了 HTMLField。
但是正如你所见,面积并不大,我想把它弄大一点。我还有另一个问题,但这个问题不太重要,我将所有工具都放在我的编辑器中,但我看不到 "code sample" 所以我想知道是否有任何添加它的提示?
在setting.py中添加:
TINYMCE_DEFAULT_CONFIG = {
'plugins': "table,xhtmlxtras,paste,searchreplace",
'theme': "advanced",
"theme_advanced_buttons3_add" : "cite,abbr",
'cleanup_on_startup': True,
'custom_undo_redo_levels': 10,
'theme_advanced_buttons1': "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
'theme_advanced_buttons2': "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
'theme_advanced_buttons3': "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
'theme_advanced_buttons4': "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak",
'extended_valid_elements': "iframe[src|title|width|height|allowfullscreen|frameborder|webkitAllowFullScreen|mozallowfullscreen|allowFullScreen]",
'theme_advanced_toolbar_location': "top",
'theme_advanced_toolbar_align': "left",
'theme_advanced_statusbar_location': "bottom",
'theme_advanced_resizing': True,
}
我最近刚刚成功安装了文本编辑器 tinyMCE 并使用了 HTMLField。
但是正如你所见,面积并不大,我想把它弄大一点。我还有另一个问题,但这个问题不太重要,我将所有工具都放在我的编辑器中,但我看不到 "code sample" 所以我想知道是否有任何添加它的提示?
在setting.py中添加:
TINYMCE_DEFAULT_CONFIG = {
'plugins': "table,xhtmlxtras,paste,searchreplace",
'theme': "advanced",
"theme_advanced_buttons3_add" : "cite,abbr",
'cleanup_on_startup': True,
'custom_undo_redo_levels': 10,
'theme_advanced_buttons1': "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
'theme_advanced_buttons2': "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
'theme_advanced_buttons3': "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
'theme_advanced_buttons4': "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak",
'extended_valid_elements': "iframe[src|title|width|height|allowfullscreen|frameborder|webkitAllowFullScreen|mozallowfullscreen|allowFullScreen]",
'theme_advanced_toolbar_location': "top",
'theme_advanced_toolbar_align': "left",
'theme_advanced_statusbar_location': "bottom",
'theme_advanced_resizing': True,
}