Re: [NTG-context] Clearest way to call a {\command } in Lua?

2016-07-23 Thread Wolfgang Schuster
Lukáš Procházka 23. Juli 2016 um 15:25 Hello, what is the clearest way to call a {\command ...} (i.e. a command which is to be wrapped in curly braces, like \em, \bf etc.) in Lua? Let's have: bla {\em haha} bla Should be the Lua transcription be: bla \

[NTG-context] Clearest way to call a {\command } in Lua?

2016-07-23 Thread Lukáš Procházka
Hello, what is the clearest way to call a {\command ...} (i.e. a command which is to be wrapped in curly braces, like \em, \bf etc.) in Lua? Let's have: bla {\em haha} bla Should be the Lua transcription be: bla \ctxlua{context(false, context.delayed.em("haha"))} % <--- The cl