<% Story.commentlink %> |
macro rendering link to comments |
Sourcecode in Story/macros.js:
1: function commentlink_macro(param) { 2: if (this.discussions && this.site.preferences.getProperty("discussions")) 3: Html.link({href: this.href(param.to ? param.to : "comment")}, 4: param.text ? param.text : "comment"); 5: return; 6: } |