Merge pull request #123 from dertuxmalwieder/master

Fix and document the isso plug-in
This commit is contained in:
Javier Olaechea 2016-10-27 11:03:08 -05:00 committed by GitHub
commit e60ec1abfb
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)))