ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Access current element in xmlsetsetup via xml.expressions
@ 2019-10-01 19:24 achim
  2019-10-02  8:18 ` Taco Hoekwater
  0 siblings, 1 reply; 5+ messages in thread
From: achim @ 2019-10-01 19:24 UTC (permalink / raw)
  To: ntg-context


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

Hello,

I'm trying to build an xmlsetsetup with an own lua function. XML in MKIV
says on pg. 33:

You can also use normal Lua functions as long as you make sure that you pass
the right arguments.

There are a few predefined variables available inside such functions.

list table the list of matches

l number the current index in the list of matches

ll element the current element that matched

order number the position of the root of the path

 

But I can't figure out how to get access to list, ll etc.

My MWE (only for testing the access, is always true):

 

\startbuffer[text]

<para>Dies ist <inline style="sup">ein</inline> xxx<inline
style="sub">zwei</inline> noch ein <inline style="sup">sup</inline>
Test<inline style="sub">sub</inline></para>

\stopbuffer

%\enabletrackers[xml.parse,xml.path]

 

\startluacode

  function xml.expressions.nextnodeatt(e)

                inspect(e)

                inspect(ll)

                return('sub')

  end

\stopluacode

 

\startxmlsetups xml:textsetups

    \xmlsetsetup{#1}{*}{+}

    \xmlsetsetup{#1}{para}{xml:*}

 
\xmlsetsetup{#1}{inline[@style='sup'][xml.expressions.nextnodeatt(ll)=='sub'
]}{xml:sub}

\stopxmlsetups

 

\xmlregistersetup{xml:textsetups}

 

\startxmlsetups xml:para

    \xmlflush{#1}\par

\stopxmlsetups

 

\startxmlsetups xml:sub

    \color[red]{\xmlflush{#1}}

\stopxmlsetups

 

 

\starttext

    \xmlprocessbuffer{main}{text}{}

\stoptext

 

Thanks in advance,

Achim


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

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

___________________________________________________________________________________
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
___________________________________________________________________________________

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

end of thread, other threads:[~2019-10-02 17:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-01 19:24 Access current element in xmlsetsetup via xml.expressions achim
2019-10-02  8:18 ` Taco Hoekwater
2019-10-02 10:32   ` mf
2019-10-02 16:52     ` Hans Hagen
2019-10-02 17:48       ` achim

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).