* [NTG-context] Replacer based on function rathen than tables
@ 2023-05-18 12:21 Jairo A. del Rio via ntg-context
2023-05-18 14:21 ` Hans Hagen via ntg-context
0 siblings, 1 reply; 2+ messages in thread
From: Jairo A. del Rio via ntg-context @ 2023-05-18 12:21 UTC (permalink / raw)
To: mailing list for ConTeXt users, Hans Hagen; +Cc: Jairo A. del Rio
[-- Attachment #1.1: Type: text/plain, Size: 341 bytes --]
Hi, list. There's lang-rep.mkxl and lang-tra.mkxl in the distribution which
allows replacing a list of words and applying transliteration,
respectively. Both are based on tables. I want to know if there's a way to
use a function instead, say
local function nice(str)
return str .. " is nice"
end
Thanks in advance. Best regards,
Jairo
[-- Attachment #1.2: Type: text/html, Size: 425 bytes --]
[-- Attachment #2: Type: text/plain, Size: 496 bytes --]
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage : https://www.pragma-ade.nl / http://context.aanhet.net
archive : https://bitbucket.org/phg/context-mirror/commits/
wiki : https://contextgarden.net
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [NTG-context] Replacer based on function rathen than tables
2023-05-18 12:21 [NTG-context] Replacer based on function rathen than tables Jairo A. del Rio via ntg-context
@ 2023-05-18 14:21 ` Hans Hagen via ntg-context
0 siblings, 0 replies; 2+ messages in thread
From: Hans Hagen via ntg-context @ 2023-05-18 14:21 UTC (permalink / raw)
To: mailing list for ConTeXt users; +Cc: Hans Hagen
On 5/18/2023 2:21 PM, Jairo A. del Rio wrote:
> Hi, list. There's lang-rep.mkxl and lang-tra.mkxl in the distribution
> which allows replacing a list of words and applying transliteration,
> respectively. Both are based on tables. I want to know if there's a way
> to use a function instead, say
>
> local function nice(str)
> return str .. " is nice"
> end
>
> Thanks in advance. Best regards,
I'll add it (one of the more trivial things):
\starttext
\startluacode
languages.replacements.add("basics", {
["one"] = "cool",
["two"] = function(s)
return "warm"
end
})
\stopluacode
\start \setreplacements[basics] It's one in here! \stop \par
\start \setreplacements[basics] It's two in here! \stop \par
\stoptext
-----------------------------------------------------------------
Hans Hagen | PRAGMA ADE
Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
tel: 038 477 53 69 | www.pragma-ade.nl | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!
maillist : ntg-context@ntg.nl / https://www.ntg.nl/mailman/listinfo/ntg-context
webpage : https://www.pragma-ade.nl / http://context.aanhet.net
archive : https://bitbucket.org/phg/context-mirror/commits/
wiki : https://contextgarden.net
___________________________________________________________________________________
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-05-18 14:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-18 12:21 [NTG-context] Replacer based on function rathen than tables Jairo A. del Rio via ntg-context
2023-05-18 14:21 ` Hans Hagen via ntg-context
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox