Merge pull request #123 from dertuxmalwieder/master
Fix and document the isso plug-in
This commit is contained in:
commit
e60ec1abfb
2 changed files with 8 additions and 1 deletions
|
@ -28,6 +28,13 @@ post with `format: cl-who` and the plugin will do the rest.
|
||||||
|
|
||||||
**Example**: `(disqus :shortname "disqus-provided-unique-id")`
|
**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
|
## HTML5 Gifs via Gfycat
|
||||||
|
|
||||||
**Description**: Provides support for embedding [gfycat](http://gfycat.com/) gifs.
|
**Description**: Provides support for embedding [gfycat](http://gfycat.com/) gifs.
|
||||||
|
|
|
@ -16,5 +16,5 @@
|
||||||
(defun enable (&key isso-url)
|
(defun enable (&key isso-url)
|
||||||
(flet ((inject-p (x)
|
(flet ((inject-p (x)
|
||||||
(when (typep x 'post)
|
(when (typep x 'post)
|
||||||
(format nil *isso-header* isso-url))))
|
(format nil *isso-header* isso-url isso-url))))
|
||||||
(add-injection #'inject-p :body)))
|
(add-injection #'inject-p :body)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue