<% HopObject.modifier %> |
macro renders the name of the modifier |
Sourcecode in HopObject/macros.js:
1: function modifier_macro(param) { 2: if (!this.modifier) 3: return; 4: if (param.as == "link" && this.modifier.url) 5: Html.link({href: this.modifier.url}, this.modifier.name); 6: else 7: res.write(this.modifier.name); 8: return; 9: } |