Sunday, March 21, 2004, 2:59:12 AM, you wrote:
SC> Basically the sooner you can make available ideas/designs/code the more it
SC> can be talked about ;-)

Point taken.  Please find attached a summary of my thoughts (well, not
all of them; just those related to convert).

Ron
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
  <xsl:template match="/">
    <html xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
      <head>
        <xsl:apply-templates select="/document/properties/title"/>
        <xsl:apply-templates select="/document/meta"/>
      </head>
      <xsl:apply-templates select="/document/body"/>
    </html>
  </xsl:template>
  <xsl:template match="body">
    <body>
      <div class="app">
        <xsl:apply-templates/>
      </div>
    </body>	
  </xsl:template>
  <xsl:template match="section">
    <div>
      <h3><xsl:value-of select="@name"/></h3>
      <xsl:apply-templates/>
    </div>
  </xsl:template>
  <xsl:template match="subsection">
    <div>
      <h4><xsl:value-of select="@name"/></h4>
      <xsl:apply-templates/>
    </div>
  </xsl:template>
  <xsl:template match="node()|@*">
    <xsl:copy>
      <xsl:apply-templates select="@*"/>
      <xsl:apply-templates/>
    </xsl:copy>
  </xsl:template>
</xsl:stylesheet>

Attachment: think.xml
Description: application/xml

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to