does Meteor offer any escaping shortcut like the backslash used in some programming languages? (BTW, I did search the docs)
<template name="hello">
<h1>H1 text of <template> "hello"</h1>
</template>
For example, would there be any way to escape the <> tags in the above example?
If you want to escape the
<so that it doesn’t actually display<but<, you should write&lt;.