summaryrefslogtreecommitdiff
path: root/Pancake.hs
diff options
context:
space:
mode:
authordefanor <defanor@uberspace.net>2017-11-24 06:20:12 +0300
committerdefanor <defanor@uberspace.net>2017-11-24 06:20:12 +0300
commit3a1c8854d0d08cdeaf089c750c8843be2d8df247 (patch)
treeadd776f6e2228e46d52fdd02f1a4464c69d392df /Pancake.hs
parent6f335b9bb792a8d1133676b60518efdd84cf3886 (diff)
Make div indentation optional
Diffstat (limited to 'Pancake.hs')
-rw-r--r--Pancake.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Pancake.hs b/Pancake.hs
index 785c879..64e3b74 100644
--- a/Pancake.hs
+++ b/Pancake.hs
@@ -63,7 +63,7 @@ printDoc uri doc = do
term <- liftIO setupTermFromEnv
st <- get
let cols = fromMaybe 80 $ getCapability term termColumns
- l = renderDoc cols (referenceDigits $ conf st) doc
+ l = renderDoc cols (conf st) doc
textLines = rLines l
modify (\s -> s { rendered = l })
if embedded st