So, if IIUC those substitutions can be used to block certain ligatures 
throughout? 

You can load multiple goodies files as in the example below, correct?

Best,
Denis

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\startluacode
     local blockthlig = {
         name    = "blockthlig",
         options = {
             {
                 substitutions = {
                     th = "t|h",
                     Th = "T|h",
                 },
             },
         },
     }
     table.save("blockthlig.llg",blockthlig)
\stopluacode

\setuplanguage[en][goodies={lang-en.llg, blockthlig.llg }]

\setupbodyfont[ebgaramond]

\starttext
     The This These fiets and thisthis thisfiets 
\stoptext
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


> -----Ursprüngliche Nachricht-----
> Von: ntg-context <ntg-context-boun...@ntg.nl> Im Auftrag von Hans Hagen
> via ntg-context
> Gesendet: Montag, 9. Mai 2022 15:03
> An: ntg-context@ntg.nl
> Cc: Hans Hagen <j.ha...@xs4all.nl>
> Betreff: Re: [NTG-context] blockligatures removing characters
> 
> On 5/9/2022 9:56 AM, Denis Maier via ntg-context wrote:
> > Happens here as well, already on  ConTeXt  ver: 2022.03.12 17:56 LMTX.
> >
> > By the way, this even happens without special fonts:
> >
> > \blockligatures[Th]
> >
> > \definefontfeature[default:blocklig][default][liga=yes,blockligatures=
> > yes]
> >
> > \setupbodyfont[myfont]
> >
> > \starttext
> >
> > \definedfont[Serif*default:blocklig]
> >
> >      The This These are missing the `h'
> >
> > \stoptext
> I'll fix it but it's not the way to do it in lmtx where we have
> 
> \startluacode
>      local demo = {
>          name    = "demo",
>          options = {
>              {
>                  patterns = {
>                      fio  = "f|io",
>                  },
>                  words = [[ fioot fiots ]],
>              },
>              {
>                  patterns = {
>                      fio  = "t|h",
>                  },
>                  words = [[ this that ]],
>              },
>          },
>      }
>      table.save("oeps-fixes.llg",demo)
> \stopluacode
> 
> \setuplanguage[en][goodies={oeps-fixes.llg}]
> 
> \setupbodyfont[ebgaramond]
> 
> \starttext
>      fiets fiots fiats fioot this that
> \stoptext
> 
> I just added (no upload) this
> 
> \startluacode
>      local demo = {
>          name    = "demo",
>          options = {
>              {
>                  substitutions = {
>                      th = "t|h",
>                      Th = "T|h",
>                      st = "s|t",
>                      St = "S|t",
>                      fi = "f|i",
>                  },
>              },
>          },
>      }
>      table.save("oeps-fixes.llg",demo)
> \stopluacode
> 
> \setuplanguage[en][goodies={oeps-fixes.llg}]
> 
> \setupbodyfont[ebgaramond]
> 
> \starttext
>      The This These fiets and thisthis thisfiets \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 / http://www.ntg.nl/mailman/listinfo/ntg-
> context
> webpage  : http://www.pragma-ade.nl / http://context.aanhet.net archive  :
> https://bitbucket.org/phg/context-mirror/commits/
> wiki     : http://contextgarden.net
> ______________________________________________________________
> _____________________
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

Reply via email to