Merge pull request #6 from ralph-moeritz/master

Fix typo.
This commit is contained in:
Brit Butler 2012-12-11 15:31:02 -08:00
commit d8e79c7a0a

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)))))