Am 28.07.2014 um 16:15 schrieb Xan
Hi,
Any hint on that [https://github.com/adityam/filter/issues/17], please?
Don’t use \doifmode{…}{…} etc. with buffers or environments which rely on a buffer because you disable the function to keep end of lines in the input. What you have to do in this case is to use the \startmode or \startnotmode commands. \usemodule[filter] \defineexternalfilter [python] [filtercommand={python \externalfilterinputfile\space > \externalfilteroutputfile},cache=force] \starttext \startmode[solucions] \starttextrule{Solucions} \startpython from sympy.solvers import solve from sympy import Symbol from sympy import Eq x = Symbol('x') print(solve(Eq(3*x + 2, 35), x)) \stoppython \stoptextrule \stopmode \stoptext Wolfgang