(defpackage :coleslaw-disqus (:use :cl) (:export #:enable) (:import-from :coleslaw #:add-injection #:post)) (in-package :coleslaw-disqus) (defvar *disqus-header* "
comments powered by Disqus") (defun enable (&key shortname) (add-injection (list (format nil *disqus-header* shortname) (lambda (x) (typep x 'post))) :body))