I am trying to display a handlebars code sample in my Ember App. The sample would look like
{{#bm-select}}
{{#bm-selected}}
{{name}}
{{/bm-selected}}
{{/bm-selected}}
How could I add this to my template and make handlebars not process it? I just want to display the code like above.
- I tried stuff like
\{{bm-select}}
. - Using raw block helpers but I don't think Ember's Handlebars support this.