Posted in javascript
227
12:14 am, February 5, 2021

Adding HTML Templates into TinyMCE Editor

This can be very useful if you are using the tinymce editor on your site and want to be able to add simple or complex html templates.

Here is how to do it:

Add this to your tinymce init

Javascript

tinymce.init({ 
  /* ... */ plugins: "template", 
});

You can then add the option to access the templates either to the tinymce toolbar or as a dropdown menu.

Javascript

tinymce.init({ 
  /* ... */ menubar: "insert", 
  toolbar: "template", 
});

Adding the template you can choose if its a string included in the init or if its more detailed you can link it to a file. 

The template format is in:

  • title
  • description
  • content or url

Javascript

tinymce.init({ 
  /* ... */ 
  templates: [ 
    { 
      title: "Some title 1", 
      description: "Some desc 1", 
      content: "<p>My content</p>", 
    }, 
    { 
      title: "Some title 2", 
      description: "Some desc 2", 
      url: "templates/development.html", 
    }, 
  ], 
});

I usually have a block that i use to insert code for highlight js formatting, which is pretty basic, so ill just include it in the content in my init.

Javascript

templates: [ 
    { 
      title: "HLJS HTML", 
      description: "Some desc 1", 
      content: "<p>My content</p>", 
  },

Current Function to load tinymce

Javascript

function load_tinymce(idclass) {
      tinymce.init({
          selector: idclass,
          plugins: [ "spellchecker code autolink link image fullscreen searchreplace wordcount visualblocks visualchars insertdatetime media table paste textcolor textpattern emoticons media lists" ],
          toolbar1: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link unlink image | code | forecolor backcolor | emoticons",
          image_advtab: true,
                    skin: "oxide-dark",
                    content_css: "dark",
                    height: 400,
          /* content_css : "/css/style.css", */
                    relative_urls: false,
          convert_urls: false,
          remove_script_host : false
      });
}

Add a template for HLJS HTML block

Javascript

function load_tinymce(idclass) {
      tinymce.init({
          selector: idclass,
          plugins: [ "spellchecker code autolink link image fullscreen searchreplace wordcount visualblocks visualchars insertdatetime media table paste textcolor textpattern emoticons media lists" ],
          toolbar1: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link unlink image | code | forecolor backcolor | emoticons",
          image_advtab: true,
                    skin: "oxide-dark",
                    content_css: "dark",
                    height: 400,
          /* content_css : "/css/style.css", */
                    relative_urls: false,
          convert_urls: false,
                    templates: [ 
                    { 
                      title: "Some title 1", 
                      description: "Some desc 1", 
                      content: "<p>My content</p>", 
                    }, 
                    { 
                      title: "Some title 2", 
                      description: "Some desc 2", 
                      url: "templates/development.html", 
                    }, 
                  ],                    
          remove_script_host : false
      });
  }

Here is the final function including the plugin and menu item

Javascript

function load_tinymce_test(idclass) {
      tinymce.init({
          selector: idclass,
          plugins: [ "template spellchecker code autolink link image fullscreen searchreplace wordcount visualblocks visualchars insertdatetime media table paste textcolor textpattern emoticons media lists" ],
          toolbar1: "template | insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link unlink image | code | forecolor backcolor | emoticons",
          image_advtab: true,
                    skin: "oxide-dark",
                    content_css: "dark",
                    height: 400,
          /* content_css : "/css/style.css", */
                    relative_urls: false,
          convert_urls: false,
                    templates: [
                    {
                      title: "HTML",
                      description: "A HTML HLJS Code Block",
                      content: "<pre><code class='html hljs xml'>HTML</code></pre>",
                            /* url: "templates/development.html", */
                    },
                    {
                      title: "Some title 2",
                      description: "Some desc 2",
                      url: "templates/development.html",
                    },
                  ],
          remove_script_host : false
      });
}

You can see this adds an additional menu item to the tinymce editor, and allows you to access the templates.

Here is the icon location for the templates:

Then it opens the template selector, with our new templates:

Pick your template, and select save. which will add this block into the editor.

Paste your code in. I noticed sometimes while pasting in the code, it would delete some of the code block, so i had to add in some dots while pasting (might be a bug in tinymce). You can see in the demo below. 

HTML

<p>
test
</p>

The End! Hopefully this helps you adding templates into your tinymce installation.

You can see the full working demo, scripts and code below.

Here is another one for Video Embed with autoplay and loop

Javascript

{
title: "Video Embed",
description: "A PHP HLJS Code Block",
content: "<p><strong><video autoplay='autoplay' loop='loop' controls='controls' width='100%' height='600'><source src='https://i.imgur.com/ot1hc51.mp4' type='video/mp4' /></video></strong></p>",
},

Adding HTML Templates into TinyMCE Editor Demo

View Demo Full Screen View Demo New Tab

Adding HTML Templates into TinyMCE Editor Code

HTML

<h2>Demo TinyMCE with Templates</h2>
<textarea id='mytinymce'></textarea>

Scripts

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tinymce/5.6.2/skins/ui/oxide/content.min.css" integrity="sha512-U8A/twP2qv8LP/I9jf9GOI6FioG4BhrB1yMkT6Z+5UI44Z5qhuVeR5Pnh4NATpPPmaPP34gm6GV1roiejydBYQ==" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tinymce/5.6.2/skins/ui/oxide-dark/skin.min.css" integrity="sha512-r3IXhPGM2XA8Yqjv5SKfx/3FNWSaAtk6h1TbZh2Oz38Mp+xO1zRGMu2Ek/IF870FyMV2f1Gq5og5i3wYEC5W8w==" crossorigin="anonymous" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/tinymce/5.6.2/tinymce.min.js" integrity="sha512-sOO7yng64iQzv/uLE8sCEhca7yet+D6vPGDEdXCqit1elBUAJD1jYIYqz0ov9HMd/k30e4UVFAovmSG92E995A==" crossorigin="anonymous"></script>

Javascript

function load_tinymce_test(idclass) {
      tinymce.init({
          selector: idclass,
          plugins: [ "template spellchecker code autolink link image fullscreen searchreplace wordcount visualblocks visualchars insertdatetime media table paste textcolor textpattern emoticons media lists" ],
          toolbar1: "template | insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link unlink image | code | forecolor backcolor | emoticons",
          image_advtab: true,
					skin: "oxide-dark",
					content_css: "dark",
					height: 400,
          /* content_css : "/css/style.css", */
					relative_urls: false,
          convert_urls: false,
					templates: [
				    {
				      title: "HTML",
				      description: "A HTML HLJS Code Block",
				      content: "<h4>HTML</h4><pre><code class='html hljs xml'>HTML</code></pre>",
							/* url: "templates/development.html", */
				    },
				    {
				      title: "CSS",
				      description: "A CSS HLJS Code Block",
				      content: "<h4>CSS</h4><pre><code class='css hljs'>.css { value: 1px; }</code></pre>",
				    },
				    {
				      title: "JS",
				      description: "A JS HLJS Code Block",
				      content: "<h4>Javascript</h4><pre><code class='javascript hljs'>function test() { console.log('test'); }</code></pre>",
				    },
				    {
				      title: "PHP",
				      description: "A PHP HLJS Code Block",
				      content: "<h4>PHP</h4><pre><code class='php hljs'>a = 1;</code></pre>",
				    },
                  ],
          remove_script_host : false
      });
  }

$(document).ready(function(){ 
  load_tinymce_test("#mytinymce");
});

Related Tags

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Items in javascript
log the console log output to a div javascript basic test array and loop how to join an array in javascript using the join method show the current date in javascript get element by id and hide it get element by id with javascript set a cookie on click and then check if the cookie is set and dont show that message again console table rather than console log for javascript objects and arrays video not auto playing issue in chrome and brave change the box-shadow of an element with javascript boxShadow change the background color of an element with javascript adding a new line in javascript javascript update item in object change the border radius of an element with javascript only change padding of element with javascript get the value from a range input field with javascript twitter json feed testing center mode slick zoom testing gallery carousel center mode old browser check with javascript check browser version and show a message using clamp js to clamp lines of text add a gtag.js pdf click event ajax callback to delete with sweet alert confirmation to make it cool! 😎 prevent default click event on link show the browsers name in javascript json test objects (or arrays) loop through a complex object json javascript load json with vanilla javascript no jquery set active class based on url value check if a variable is undefined or NULL fancybox image popout easy check box highlight text area css validate an email address from a form field - version 2 check if a checkbox is checked with javascript form submit override with javascript submit a form with javascript onclick dropdown change input box on select Slick Slider Carousel with Fade Transition clear a input field when it looses focus using onblur javascript page redirect page scroll indicator research replacement slider for ken wheeler's slick carousel tiny slider 2 [testing] change a select box back to its initial select value select onchange add years as options to select dropdown using moment.js to make your time format nicer loop through object json javascript set the html of an element javascript get the value of an input form element (input value)