On 5/6/2015 9:38 PM, Pablo Rodriguez wrote:
Dear list,

I have the following sample:

     \startbuffer[demo]
     <a href="#myspecialid">the previous section</a>
     \stopbuffer

     \startxmlsetups xml:initialize
          \xmlsetsetup{#1}{a}{xml:*}
     \stopxmlsetups

     \xmlregistersetup{xml:initialize}

     \startxmlsetups xml:a
         \ctxlua{context("\\xmlatt{#1}{href}")}
         \ctxlua{local originalid = "abcde";% doesn’t work with #
         tex.print(string.sub(originalid,2))}
     \stopxmlsetups

     \starttext
          \xmlprocessbuffer{main}{demo}{}
     \stoptext

In both for some reason unknown to me, compilation crashes whe
string.sub has an string with # inside.

How could I get the following command working?

     \ctxlua{tex.print(string.sub(context("\\xmlatt{#1}{href}"),2))}

Even if I remove # from the href attribute, compilation crashes.

Sorry for asking this again, but which is the right way to do this?

I have spent hours trying to find out how to do it, but I’m afraid this
is beyond my knowledge.

\startbuffer[demo]
<a href="#myspecialid">the previous section</a>
\stopbuffer

\startxmlsetups xml:initialize
     \xmlsetsetup{#1}{a}{xml:*}
\stopxmlsetups

\xmlregistersetup{xml:initialize}

\startxmlsetups xml:a
    \cldcontext{string.sub([[\xmlatt{#1}{href}]],2)}
    % next beta (more efficient):
    % \xmlrefatt{#1}{href}
\stopxmlsetups

\starttext
     \xmlprocessbuffer{main}{demo}{}
\stoptext


-----------------------------------------------------------------
                                          Hans Hagen | PRAGMA ADE
              Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
    tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                             | 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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

Reply via email to