I have document with such structure:

<section id='sec1'>
        <section id='sec2'>
                <para>para1</para>
        </section>
        <section id='sec3'>
                <para>para1</para>
        </section>
</section>

I want to replace sec2 with its content:

<section id='sec1'>
        <para>para1</para>
        <section id='sec3'>
                <para>para1</para>
        </section>
</section>

Is this possible to do with xxe not using copy'n'paste method
(copy sec2 content to buffer, remove sec2, paste buffer before sec3)?

-- 
The End


Reply via email to