From 3bf2eec125ea049ea824893d6846ac4ad99002e0 Mon Sep 17 00:00:00 2001 From: Mario Botsch Date: Fri, 20 Oct 2017 16:36:41 +0200 Subject: [PATCH] removed nbsp from clearDiv --- src/Text/Pandoc/Util/Filter/Cols.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Text/Pandoc/Util/Filter/Cols.hs b/src/Text/Pandoc/Util/Filter/Cols.hs index 7f5e2b5..eddf465 100644 --- a/src/Text/Pandoc/Util/Filter/Cols.hs +++ b/src/Text/Pandoc/Util/Filter/Cols.hs @@ -75,4 +75,4 @@ makeDiv :: Int -> Block -> Block makeDiv width content = Div ("", [], [("style","width:" <> show width <> "%;float:left")]) [content] clearDiv :: Block -clearDiv = Div ("", [], [("style", "clear: both")]) [Plain [toHtml " "]] +clearDiv = Div ("", [], [("style", "clear: both")]) [Plain [toHtml ""]]