From bcc2a5ececee5a216c0614c1bbe58e2a4797ec62 Mon Sep 17 00:00:00 2001 From: Shinmera Date: Sat, 28 Sep 2019 17:25:10 +0200 Subject: [PATCH] Fix markless plugin problems --- docs/plugin-use.md | 2 +- plugins/markless.lisp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/plugin-use.md b/docs/plugin-use.md index 3a7f62e..735a24a 100644 --- a/docs/plugin-use.md +++ b/docs/plugin-use.md @@ -106,7 +106,7 @@ post with `format: cl-who` and the plugin will do the rest. **Description**: [Markless](https://shirakumo.github.io/markless) is a new document markup standard. To use it in your posts, create the - posts with `format: mess`. The output is generated using + posts with `format: markless`. The output is generated using [cl-markless-plump](https://shirakumo.github.io/cl-markless/cl-markless-plump/), meaning any syntax extensions that work with it should also be available in Coleslaw. diff --git a/plugins/markless.lisp b/plugins/markless.lisp index 069b76c..9a5c2f1 100644 --- a/plugins/markless.lisp +++ b/plugins/markless.lisp @@ -6,7 +6,7 @@ (:export #:enable)) (in-package :coleslaw-markless) -(defmethod render-text (text (format (eql :mess))) +(defmethod coleslaw:render-text (text (format (eql :markless))) (cl-markless:output text :target NIL :format 'cl-markless-plump:plump)) (defun enable ())