Add plugin mathjax for tinymce 4 - tinymce

I want to add plugin mathjax for tinymce 4.Because now we can not find mathjax for tinymce 4 but only for tinymce 3. help

Related

I'm having trouble while customizing the TinyMCE in OpenedX (Devstack). How can I fix?

I'm having trouble customizing the TinyMCE in OpenedX Devstack. Normally I didn't have any problems in front-end-course-authoring TinyMCE editor, but when I installed the 'front-end-lib-content-components' app for customization, the data didn't show up in the editor. I did not change the props, they are the same as the default ones.
(click for larger images)

How do I exchange the default RTE CK Editor preset of TYPO3 with the full preset of the RTE CK editor?

How do I exchange the default RTE CK Editor preset of TYPO3 with the full preset of the RTE CK editor? I don't have a file called page.ts or sth. like this.
A configuration with all function can be found in typo3/sysext/rte_ckeditor/Configuration/RTE/Full.yaml.
So, you have only to load this as default for RTE fields.
Rich Text Editing in TYPO3 with CKEditor (rte_ckeditor) - Configuration Presets shows the following example to be put in LocalConfiguration.php, AdditionalConfiguration.php or within ext_localconf.php of an extension:
$GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']['default'] = 'EXT:rte_ckeditor/Configuration/RTE/Default.yaml';

How to change tinyMCE editor value to return html element only

I have a problem with the TinyMCE editor that I'd like to fix.
The tinymce editor converts to [b]content[/b] for bold text instead of <strong>content</strong> or <b>content</b>
All inline elements also do the same. including; img, italic, URL, etc.
I have checked the doc and search google, but, I'm not getting any useful answers. I'd appreciate it if anyone can be able to help. Thanks
You are likely running the bbcode plugin with TinyMCE. If you stop running that plugin TinyMCE will provide you with HTML and not bbcode markup.
https://www.tiny.cloud/docs/plugins/opensource/bbcode/

How to change add media button in moodle tinymce editor?

I've been learning Moodle CMS and I'm stuck in one problem. I'm using tinymce as a default editor. There's insert video button but popup window doesn't have full functionality as an original tinymce insert video popup window.
How can I change it? I want to choose HTML5 from Type and control the Dimensions of the video. But now it's not possible in Moodle Tinymce Editor.
After hours of searching google, I came to an answer on the moodle forum
Here's what I did to use original tinymce media insert:
1) Adding media plugin to the config file: lib/editor/tinymce/lib.php
'plugins' => 'safari,...,media',
2) From moodle admin settings of tinymce editor, add media button.

Activating/Adding a button to tinyMCE

I am unfortunately lost, I am trying to install an image upload plugin to my tinyMCE editor and after some research I chose : http://justboil.me/tinymce-images-plugin/
I followed the instructions and added the folder to my tinyMCE plugin directory, configured my settings with the config.php file but when it comes to activating it and adding the button in tinyMCE I am lost.
The site talks about using this code somewhere but I even with some research i still cannot find what I need to do, could anyone point me is to where I would add the code?
<script type="text/javascript">
tinyMCE.init({
theme : "advanced",
relative_urls : false,
plugins : "jbimages",
theme_advanced_buttons1 : "jbimages,|"
// Other TinyMCE options
});
</script>
Thank you.
Assuming that the config.php file you mention contains the tinyMCE configuration parameters, then all you need to do is add jbimages to one of your *theme_advanced_buttons* config items in the position on the toolbar where you want it to appear.
If however the config.php file doesn't contain the full TinyMCE configuration, then it would appear whoever integrated TinyMCE into your application has hidden that functionality and you will need to talk to them or tell us what product you are using TinyMCE in.