diff --git a/template/app/controller/Examples.js b/template/app/controller/Examples.js index 87afed44021a9f45664a1587ef89102fb214360d..4069175f854ed4f97967bead2af3c9f3df423bad 100644 --- a/template/app/controller/Examples.js +++ b/template/app/controller/Examples.js @@ -85,7 +85,8 @@ Ext.define('Docs.controller.Examples', { replaceExampleDivs: function() { Ext.Array.each(Ext.query('.inline-example'), function(inlineEg) { // Grab code from
 element and replace it with new empty 
- var code = Ext.util.Format.stripTags(inlineEg.innerHTML); + // Strip tags and replace HTML entities with their values + var code = Ext.String.htmlDecode(Ext.util.Format.stripTags(inlineEg.innerHTML)); var div = document.createElement("div"); inlineEg.parentNode.replaceChild(div, inlineEg); // Then render the example component inside the div