I am using the following embedded code in my slidify. It's a code snippet from AngularJS code.
```html
<span>{{title}}</span>
<input type="text" ng-model="name"></input>
<span>Name: {{name}}</span>
```
I have 2 questions.
Template placeholders ({{title}}, {{name}}) are disappearing in the final presentation. I would like them rendered as is with some syntax highlighting. How do I escape these ? I have tried
{r eval=F} and
r and ```js. They all have the same issue.Where is the complete list of syntax highlighters I can use (other than ```r) with slidify.
I went through the slidify documentation and stack overflow questions and couldn't find any workable solution.