Hi I use xsl stylesheet 1.5 chunk.xsl with Saxon. The chunk.first.sections param is 0. It's works fine, but if sections are childs of some chapter's first section, Saxon doesn't chunk sections the first section.
I send example : test.xml and the generated html files : html.zip (2.1 section's childs not chunked) What's the problem? 2. question: Can I prohibit chunk some sections, for example the section is too small (simplesect doesn't appear in Toc) Very thanks Szazo
html.zip
Description: Zip compressed data
<?xml version="1.0" encoding="UTF-8"?> <set> <book> <chapter> <title>1. chapter</title> <para>1. chapter</para> <section> <title>1.1 section</title> <para>1.1 section</para> </section> <section> <title>1.2 section</title> <para>1.2 section</para> <section> <title>1.2.1 section</title> <para>1.2.1 section</para> </section> <section> <title>1.2.2 section</title> <para>1.2.2 section</para> </section> </section> </chapter> <chapter> <title>2. chapter</title> <para>2. chapter</para> <section> <title>2.1 section</title> <para>2.1 section</para> <section> <title>2.1.1 section</title> <para>2.1.1 section</para> </section> <section> <title>2.1.2 section</title> <para>2.1.2 section</para> </section> </section> </chapter> </book> </set>
