ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Nested XML environments with MkIV
@ 2008-02-02 18:42 Wolfgang Schuster
  2008-02-02 20:46 ` Hans Hagen
  0 siblings, 1 reply; 2+ messages in thread
From: Wolfgang Schuster @ 2008-02-02 18:42 UTC (permalink / raw)
  To: ConTeXt

Hi,

I tried to get the following example with ConTeXt's old XML macros
in MkII with the new setup mechanism from MkIV.

\defineXMLenvironment [section] {Section:\par} {}
\defineXMLenvironment [p] \par \par

\startbuffer
<section>
<p>text text</p>
	<section>
	<p>text text</p>
	</section>
<p>text text</p>
</section>
\stopbuffer

\starttext
\processXMLbuffer
\stoptext

My code for MkIV looks like:

\startxmlsetups xml:mysetups
  \xmlsetsetup{\xmldocument}{section}{xml:section}
  \xmlsetsetup{\xmldocument}{p}{xml:paragraph}
\stopxmlsetups

\xmlregistersetup{xml:mysetups}

\startxmlsetups xml:paragraph
  \xmlflush{#1}\par
\stopxmlsetups

\startxmlsetups xml:section
  Section:\par
  \xmlflush{#1}
\stopxmlsetups

\startbuffer[section]
<section>
<p>text text</p>
	<section>
	<p>text text</p>
	</section>
<p>text text</p>
</section>
\stopbuffer

\starttext
\xmlprocessbuffer{main}{section}{}
\stoptext

What I want is to insert or execute a macro at the begin of every new
section environment (I used the text "Section:") and this work fine
with XML definition but not with setups, only the first envionment is
executed and the rest is only read and flushed.

Wolfgang
___________________________________________________________________________________
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  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


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

end of thread, other threads:[~2008-02-02 20:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-02 18:42 Nested XML environments with MkIV Wolfgang Schuster
2008-02-02 20:46 ` Hans Hagen

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