Hello, the following shortening "\ctxlua{commands.doif" to "\cldcommand{doif" doesn't work as I'd expect, although it should be equal: ---- \starttext A \ctxlua{commands.doif(true)}{T} % Gives "T" - that's OK \cldcommand{doif(true)}{t} % Gives nothing; why? B \stoptext ---- Probably very basic question... What am I doing wrong? Best regards, Lukas -- Ing. Lukáš Procházka [mailto:LPr@pontex.cz] Pontex s. r. o. [mailto:pontex@pontex.cz] [http://www.pontex.cz] Bezová 1658 147 14 Praha 4 Tel: +420 244 062 238 Fax: +420 244 461 038
On 11/29/2012 9:32 AM, Procházka Lukáš Ing. - Pontex s. r. o. wrote:
Hello,
the following shortening "\ctxlua{commands.doif" to "\cldcommand{doif" doesn't work as I'd expect, although it should be equal:
---- \starttext A
\ctxlua{commands.doif(true)}{T} % Gives "T" - that's OK \cldcommand{doif(true)}{t} % Gives nothing; why?
B \stoptext ----
Probably very basic question... What am I doing wrong?
indeed as it's \ctxcommand the \cldcommand does a context.doif an that one takes three arguments so you've something to wikify: : \starttext A \ctxlua{commands.doif(true)}{one} B \cldcommand{doif("a","a","two")} C \ctxcommand{doif(true)}{three} D \stoptext ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com | www.pragma-pod.nl -----------------------------------------------------------------
On Thu, 29 Nov 2012 10:27:36 +0100, Hans Hagen
On 11/29/2012 9:32 AM, Procházka Lukáš Ing. - Pontex s. r. o. wrote: indeed as it's \ctxcommand
the \cldcommand does a context.doif an that one takes three arguments
so you've something to wikify: :
\starttext A
\ctxlua{commands.doif(true)}{one}
B
\cldcommand{doif("a","a","two")}
C
\ctxcommand{doif(true)}{three}
D
\stoptext
Thanks for explanation - added to http://wiki.contextgarden.net/Command/ctxcommand Best regards, Lukas -- Ing. Lukáš Procházka [mailto:LPr@pontex.cz] Pontex s. r. o. [mailto:pontex@pontex.cz] [http://www.pontex.cz] Bezová 1658 147 14 Praha 4 Tel: +420 244 062 238 Fax: +420 244 461 038
participants (2)
-
Hans Hagen
-
Procházka Lukáš Ing. - Pontex s. r. o.