Ember.js v0.9.8.1
by pangratz666
HTML
<script src="https://github.com/downloads/emberjs/ember.js/ember-0.9.8.1.js"></script>
<script type="text/x-handlebars" >
{{App.html}} - {{App.unescaped}}
</script>
JavaScript
App = Ember.Application.create({
html: '<b>bold text</b>',
unescaped: function(){
return this.get('html').htmlSafe();
}.property('html')
});