Fixed and finally documented the isso plug-in

This commit is contained in:
Cthulhux 2016-10-27 12:37:51 +02:00
parent 2ee2609020
commit 08a66b2f8b
2 changed files with 8 additions and 1 deletions

View file

@ -28,6 +28,13 @@ post with `format: cl-who` and the plugin will do the rest.
**Example**: `(disqus :shortname "disqus-provided-unique-id")`
## Comments via isso
**Description**: Provides comment support through
[isso](https://posativ.org/isso/).
**Example**: `(isso :isso-url "your-isso-url")`
## HTML5 Gifs via Gfycat
**Description**: Provides support for embedding [gfycat](http://gfycat.com/) gifs.

View file

@ -16,5 +16,5 @@
(defun enable (&key isso-url)
(flet ((inject-p (x)
(when (typep x 'post)
(format nil *isso-header* isso-url))))
(format nil *isso-header* isso-url isso-url))))
(add-injection #'inject-p :body)))