Advertisement
kastielspb

Ckeditor settings

Jun 5th, 2019
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.49 KB | None | 0 0
  1. CKEDITOR_CONFIGS = {
  2.     "default": {
  3.         "skin": "moono",
  4.         "toolbar_Basic": [["Source", "-", "Bold", "Italic"]],
  5.         "toolbar_YourCustomToolbarConfig": [
  6.             {
  7.                 "name": "document",
  8.                 "items": ["Source", "-", "Save", "NewPage", "Preview",
  9.                           "Print", "-", "Templates"],
  10.             },
  11.             {
  12.                 "name": "clipboard",
  13.                 "items": [ "Cut", "Copy", "Paste", "PasteText",
  14.                            "PasteFromWord", "-", "Undo", "Redo"],
  15.             },
  16.             {
  17.                 "name": "editing",
  18.                 "items": ["Find", "Replace", "-", "SelectAll"],
  19.             },
  20.             {
  21.                 "name": "forms",
  22.                 "items": ["Form", "Checkbox", "Radio", "TextField", "Textarea",
  23.                           "Select", "Button", "ImageButton", "HiddenField"],
  24.             },
  25.             "/",
  26.             {
  27.                 "name": "basicstyles",
  28.                 "items": ["Bold", "Italic", "Underline", "Strike",
  29.                           "Subscript", "Superscript", "-", "RemoveFormat"],
  30.             },
  31.             {
  32.                 "name": "paragraph",
  33.                 "items": ["NumberedList", "BulletedList", "-", "Outdent", "Indent",
  34.                           "-", "Blockquote", "CreateDiv", "-","JustifyLeft",
  35.                           "JustifyCenter", "JustifyRight", "JustifyBlock",
  36.                           "-", "BidiLtr", "BidiRtl", "Language"],
  37.             },
  38.             {"name": "links", "items": ["Link", "Unlink", "Anchor"]},
  39.             {
  40.                 "name": "insert",
  41.                 "items": ["Image", "Flash", "Table", "HorizontalRule",
  42.                           "Smiley", "SpecialChar", "PageBreak", "Iframe"],
  43.             },
  44.             "/",
  45.             {
  46.                 "name": "styles",
  47.                 "items": ["Styles", "Format", "Font", "FontSize"],
  48.             },
  49.             {"name": "colors", "items": ["TextColor", "BGColor"]},
  50.             {"name": "tools", "items": ["Maximize", "ShowBlocks"]},
  51.             {"name": "about", "items": ["About"]},
  52.             "/",
  53.             {
  54.                 "name": "yourcustomtools",
  55.                 "items": ["Preview", "Maximize"],
  56.             },
  57.         ],
  58.         "toolbar": "YourCustomToolbarConfig",
  59.         "tabSpaces": 4,
  60.         "extraPlugins": ",".join([
  61.             "uploadimage", "div", "autolink", "autoembed", "embedsemantic", "widget",
  62.             "lineutils", "clipboard", "dialog", "dialogui", "elementspath"
  63.         ]),
  64.     }
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement