B
binary_sunset
Okay... so this may be all to obvious to all except myself, but I am
having some difficulty with XML output from Adobe InDesign. Each
separate article in my publication is tagged as an article, with a
component tree, but the articles all appear in the XML output as child
nodes of the previous article ala:
<article>
<title/>
<date/>
<body/>
<article>
<title/>
<date/>
<body/>
<article>
<title/>
<date/>
<body/>
</article>
</article>
</article>
The desired output from an XSLT would be something like three separate
files (easy) with the structure:
<article>
<title/>
<date/>
<body/>
</article>
or at least:
<article>
<title/>
<date/>
<body/>
</article>
<article>
<title/>
<date/>
<body/>
</article>
<article>
<title/>
<date/>
<body/>
</article>
So how do I parse the output? It looks like a recursive process, as
the number of nestings will vary with the number of articles in the
signature, and by magazine. The idea of attaching an attribute
<article id="n"> to each article occurred to me, but this changes the
workflow somewhat, as ids were to be established in post-processing,
rather than by hand.
Thanks.
Michael C.
Light Technology Publishing
having some difficulty with XML output from Adobe InDesign. Each
separate article in my publication is tagged as an article, with a
component tree, but the articles all appear in the XML output as child
nodes of the previous article ala:
<article>
<title/>
<date/>
<body/>
<article>
<title/>
<date/>
<body/>
<article>
<title/>
<date/>
<body/>
</article>
</article>
</article>
The desired output from an XSLT would be something like three separate
files (easy) with the structure:
<article>
<title/>
<date/>
<body/>
</article>
or at least:
<article>
<title/>
<date/>
<body/>
</article>
<article>
<title/>
<date/>
<body/>
</article>
<article>
<title/>
<date/>
<body/>
</article>
So how do I parse the output? It looks like a recursive process, as
the number of nestings will vary with the number of articles in the
signature, and by magazine. The idea of attaching an attribute
<article id="n"> to each article occurred to me, but this changes the
workflow somewhat, as ids were to be established in post-processing,
rather than by hand.
Thanks.
Michael C.
Light Technology Publishing