Some characters are not recognised by the Rich Text TinyMCE Template feature
In this post Marc figured out how to get the TinyMCE Template feature working in v8. #H5YR
I've now created a template but by chance discovered that some characters are not recognised by the Template tool.
Here's my template code
<ul>
<li>A single quote like this ' is fine</li>
<li>A single quote like this ’ is not</li>
<li>A dash like this - is fine</li>
<li>A dash like this – is not</li>
</ul>
so things like an en-dash - would have a html entity reference of – and a 'backtick' would have numeric reference `
(if it's a backtick you are after here)
Some characters are not recognised by the Rich Text TinyMCE Template feature
In this post Marc figured out how to get the TinyMCE Template feature working in v8. #H5YR
I've now created a template but by chance discovered that some characters are not recognised by the Template tool.
Here's my template code
and here's the result!
Any idea how I can fix this?
Thanks,
Matt
Hi Matt
I suspect it's to do with Unicode and character sets - I wonder if you provide the entity references instead of the actual characters it would work?
This is a useful reference for the scenario and entity codes here: https://www2.cs.sfu.ca/~ggbaker/reference/characters/#single
so things like an en-dash - would have a html entity reference of
–
and a 'backtick' would have numeric reference`
(if it's a backtick you are after here)be interesting to see if it works anyway.
regards
Marc
It does work Marc, well done.
is working on a reply...