Automatically strip leading whitespace from all typing environments.
authorMatthijs Kooijman <matthijs@stdin.nl>
Fri, 6 Nov 2009 10:58:25 +0000 (11:58 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Fri, 6 Nov 2009 10:58:25 +0000 (11:58 +0100)
This is a new feature in ConTeXt, that replaces my custom code in the
pretty printers.

Chapters/Normalization.tex
Utils/Lambda.tex

index 2d82716401854391475606611d4068569ad7177a..8879ba9af1266bfdb92903021be479e4193b02e8 100644 (file)
@@ -7,9 +7,9 @@
   % space at the start of the frame.
   \define[1]\example{
     \framed[offset=1mm,align=right,strut=no,background=box,frame=off]{
-      \setuptyping[option=LAM,style=sans,before=,after=]
+      \setuptyping[option=LAM,style=sans,before=,after=,strip=auto]
       \typebuffer[#1]
-      \setuptyping[option=none,style=\tttf]
+      \setuptyping[option=none,style=\tttf,strip=auto]
     }
   }
 
index 4d9de33bb1116eb64b82dd06af0faf28c3cc980c..12aea733b3a8b8c61a04ecb24a089c7d62d38bfd 100644 (file)
@@ -60,9 +60,9 @@ draw b;
 % Install the lambda calculus pretty-printer, as defined in pret-lam.lua.
 \installprettytype [LAM] [LAM]
 % Define \startlambda \stoplambda
-\definetyping[lambda][option=LAM,style=sans,before=\startboxed,after=\stopboxed]
+\definetyping[lambda][option=LAM,style=sans,before=\startboxed,after=\stopboxed,strip=auto]
 % Define \startunboxedlambda \stopunboxedlambda
-\definetyping[unboxedlambda][option=LAM,style=sans]
+\definetyping[unboxedlambda][option=LAM,style=sans,strip=auto]
 
 % Define \lam{} (since \lambda is taken)
 \definetype[lam][option=LAM,style=sans]
@@ -70,12 +70,12 @@ draw b;
 % Install the transformation pretty-printer, as defined in pret-trans.lua.
 \installprettytype [TRANS] [TRANS]
 % Define \starttrans \stoptrans
-\definetyping[trans][option=TRANS,style=normal,before=\startboxed,after=\stopboxed]
+\definetyping[trans][option=TRANS,style=normal,before=\startboxed,after=\stopboxed,strip=auto]
 
 % Install the haskell pretty-printer, as defined in pret-haskell.lua.
 \installprettytype [HASKELL] [HASKELL]
 % Define \starthaskell \stophaskell
-\definetyping[haskell][option=HASKELL,before=\startboxed,after=\stopboxed]
+\definetyping[haskell][option=HASKELL,before=\startboxed,after=\stopboxed,strip=auto]
 % Define \hs
 \definetype[hs][option=HASKELL,style=mono]