Replaces HTML comments with data
Possible HTML comment:
<!-- {example} -->Javascript code
// Initialize
Enhanse.init();
// Insert menu button
Enhanse.enhance("{example}", function () {
return '<strong>foo</strong>';
});Changes the HTML comment to:
<strong>foo</strong>