TinyMce Plugins
# package-development
w
TinyMCE Question: Can we load additional TinyMCE plugins that are part of TinyMce?
For example what if I want to add/use the 'emoticons' OpenSource plugin from TinyMce, so I can get completions for
:taco:
inline directly in the editor? https://www.tiny.cloud/docs/tinymce/latest/emoticons/
h
You should be able to add them in appsettings
Copy code
"Commands": [
          {
            "Alias": "codesample",
            "Name": "Code Sample",
            "Mode": "Insert"
          },
          {
            "Alias": "emoticons",
            "Name": "Emoticons",
            "Mode": "Insert"
          },
          {
            "Alias": "forecolor",
            "Name": "Change Color",
            "mode": "Selection"
          },
          {
            "Alias": "fontselect",
            "Name": "Change Font Family",
            "Mode": "Selection"
          },
          {
            "Alias": "fontsizeselect",
            "Name": "Change Font Size",
            "Mode": "Selection"
          }
        ],
        "Plugins": [
          "codesample",
          "emoticons",
          "textcolor",
          "colorpicker"
        ],
in the
Copy code
"RichTextEditor": {}
section
w
Ah yeh forgot about the appsettings config. Cheers Huw, will try it out.
Did this work for you @huwred in V14 ? The forecolor, fontsizeselect worked
But fontselect, emoticons, codesample didn't
h
Not tried in 14 I'm afraid