Hi All,

I have an XSLT style sheet that I use to generate an HTML table. Is it
possible with Forrest v0.7 to perform the transformation as part of
the site build and include the results under a document's section?
Here is a pseudo code that kind of illustrates what I am after:

index.xml

<?xml version="1.0" encoding="UTF-8"?>
<!--
  Copyright....
-->
<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN"
"http://forrest.apache.org/dtd/document-v20.dtd";>
<document>
  <header>
    <title>Page Title</title>
  </header>
  <body>
    <section id="sectionid">
      <title>Section Title</title>
      <transform src="data.xml" stylesheet="table.xsl"/>
    </section>
  </body>
</document>

Thank you,

Victor