<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="styleMe.xsl"?>
<doc lang="en-us">
  <title>This is a simple XML document</title>
  <chapter name="Chapter 1">
    <para>You can do it!</para>
    <para>There's nothing to it!</para>
    <para>Go fast!</para>
  </chapter>
  <chapter name="Chapter 2" type="nested">
    <preface>This will be interesting</preface>
    <para>Here we go...</para>
    <chapter>
      <title>sub-chapter</title>
      <para>Who ever heard of nested chapters?!</para>
    </chapter>
    <chapter>
      <title>another sub-chapter</title>
      <para>End of sub-chapter</para>
    </chapter>
    <para>No more nested chapters for now...</para>
  </chapter>
  <chapter name="Chapter 3"/> <!--empty-->
  <chapter name="Chapter 4"/> <!--empty-->
  <chapter name="Chapter 5">
    <section/>
    <section>
      <para/> <!-- empty -->
    </section>
  </chapter>
</doc>
