<% Choice.title %>
render the title of a choice, either as editor or as plain text

Sourcecode in Choice/macros.js:
1:   function title_macro(param) {
2:      if (param.as = "editor")
3:         Html.input(this.createInputParam("title", param));
4:      else
5:         res.write(this.title);
6:      return;
7:   }