Ralph Moritz 12 anni fa
parent
commit
7d6324aaf7
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/coleslaw.lisp

+ 1 - 1
src/coleslaw.lisp

@@ -7,7 +7,7 @@
7 7
   (:documentation "Compile TEXT from the given FORMAT to HTML for display.")
8 8
   (:method (text (format (eql :html)))
9 9
     text)
10
-  (:method (test (format (eql :md)))
10
+  (:method (text (format (eql :md)))
11 11
     (let ((3bmd-code-blocks:*code-blocks* t))
12 12
       (with-output-to-string (str)
13 13
         (3bmd:parse-string-and-print-to-stream text str)))))