From b267777846d3619330469fc8319f536422daa734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20M=C3=BCller?= Date: Wed, 22 Oct 2014 18:15:34 +0200 Subject: [PATCH] enabling all features in the pegdown translator --- src/notehub/views.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notehub/views.clj b/src/notehub/views.clj index 01d4b0b..f25b20d 100644 --- a/src/notehub/views.clj +++ b/src/notehub/views.clj @@ -12,7 +12,7 @@ (def get-message (get-map "messages")) (def md-processor - (PegDownProcessor. Extensions/TABLES)) + (PegDownProcessor. Extensions/ALL)) (defn md-to-html [md-text] (.markdownToHtml md-processor md-text))