<% User.name %>
macro rendering username

Sourcecode in User/macros.js:
1:   function name_macro(param) {
2:      if (this.url)
3:         Html.link({href: this.url}, this.name);
4:      else
5:         res.write(this.name);
6:      return;
7:   }