12 lines
342 B
Common Lisp
12 lines
342 B
Common Lisp
(eval-when (:compile-toplevel :load-toplevel)
|
|
(ql:quickload 'cl-markless-plump))
|
|
|
|
(defpackage #:coleslaw-markless
|
|
(:use #:cl)
|
|
(:export #:enable))
|
|
(in-package :coleslaw-markless)
|
|
|
|
(defmethod coleslaw:render-text (text (format (eql :markless)))
|
|
(cl-markless:output text :target NIL :format 'cl-markless-plump:plump))
|
|
|
|
(defun enable ())
|