ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* [NTG-context] Values from Lua back to ConTeXt
@ 2024-10-02 13:44 Thomas Meyer
  2024-10-02 17:44 ` [NTG-context] " Wolfgang Schuster
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Meyer @ 2024-10-02 13:44 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1004 bytes --]

Hello,
what do I have to do so that the values (d1, m1, y1) from the Lua block 
are returned with Return and the commented out line
\date[d=d1,m=m1,y=y1][weekday,{,~},day,{.~},month,{~},year]
works in ConTeXt.
In other words: how do I do it right?

Thank you in advance
Greetings
Thomas

PS. Sorry, I'm a totally novice in Lua.


\starttext

\startluacode

function ddate(s)
i = 1
j = 4
y1 = string.sub(s,i,j)
i = 5
j = 6
m1 = string.sub(s,i,j)
i = 7
j = 8
d1 = string.sub(s,i,j)
context("Geht das:  %s.%s.%s", d1, m1, y1)         -- that works!
--return d1, m1, y1                                           -- that 
works not! Why?
end

\stopluacode

\def\DDate#1{\ctxlua{ddate("#1")}}

\DDate{20241005}
%\date[d=d1,m=m1,y=y1][weekday,{,~},day,{.~},month,{~},year]
\blank
\date[dd,mm,yyyy][weekday,{,~},day,{.~},month,{~},year]
\blank
\date[d=11,m=7,y=2024][weekday,{,~},day,{.~},month,{~},year]


\stoptext

[-- Attachment #1.2: Type: text/html, Size: 1622 bytes --]

[-- Attachment #2: Type: text/plain, Size: 511 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl
webpage  : https://www.pragma-ade.nl / https://context.aanhet.net (mirror)
archive  : https://github.com/contextgarden/context
wiki     : https://wiki.contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-10-03  9:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-02 13:44 [NTG-context] Values from Lua back to ConTeXt Thomas Meyer
2024-10-02 17:44 ` [NTG-context] " Wolfgang Schuster
2024-10-03  8:59   ` Thomas Meyer
2024-10-03  9:27     ` Wolfgang Schuster
2024-10-03  9:44       ` Thomas Meyer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).