Guest User

Untitled

a guest
Jun 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. (= follow-threshold* 5)
  2.  
  3. ; ...
  4.  
  5. (def titlelink (s url user)
  6. (tag (td class 'title)
  7. (if (cansee user s)
  8. (do (let toself (blank url)
  9. (tag (a href (if toself (item-url s) url)
  10. rel (unless (or toself
  11. (> (realscore s) follow-threshold*))
  12. 'nofollow))
  13. (pr (s 'title))))
  14. (deadmark s user)
  15. (awhen (and (valid-url url) (sitename url))
  16. (spanclass comhead
  17. (pr " (" it ") "))))
  18. (pr (pseudo-text s)))))
Add Comment
Please, Sign In to add comment