I am using tinymce editor for my project. I want to add some more special characters (for eg Rupee sign (₹)). However I didn't find any solution.
My code is
tinymce.init({
"selector": "#editor",
"menubar":false,
"statusbar": false,
"plugins": "charmap",
"toolbar": "bold italic underline | charmap"
})
Any help would be appreciated
You can modify the options in the character map using either
charmap
orcharmap_append
in your TinyMCE configuration:charmap
entirely replaces the default character map that TinyMCE uses by defaultcharmap_append
adds new characters to the default character map that TinyMCE uses by defaultFor example you could add something like either of these to your TinyMCE configuration:
or