Fix typo.

This commit is contained in:
Ralph Moritz 2012-12-11 12:38:54 +02:00
parent 067f523293
commit 7d6324aaf7

View file

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