From 95e24bbc2db6dd6a87a0fdb5a8cfdb473146753e Mon Sep 17 00:00:00 2001 From: Shinmera Date: Fri, 30 Aug 2019 13:09:01 +0200 Subject: [PATCH] Markless plugin through cl-markless-plump --- plugins/markless.lisp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 plugins/markless.lisp diff --git a/plugins/markless.lisp b/plugins/markless.lisp new file mode 100644 index 0000000..069b76c --- /dev/null +++ b/plugins/markless.lisp @@ -0,0 +1,12 @@ +(eval-when (:compile-toplevel :load-toplevel) + (ql:quickload 'cl-markless-plump)) + +(defpackage #:coleslaw-markless + (:use #:cl) + (:export #:enable)) +(in-package :coleslaw-markless) + +(defmethod render-text (text (format (eql :mess))) + (cl-markless:output text :target NIL :format 'cl-markless-plump:plump)) + +(defun enable ())