first_page the funky knowledge base
personal notes from way, _way_ back and maybe today

XSLT Markup: The Default Markup for HTML Output for an XSL Style Sheet Used in Visual Studio.net for HTML Intellisense Support

<?xml version="1.0" encoding="UTF-8" ?> <xsl:stylesheet version="1.0" xmlns="http://schemas.microsoft.com/intellisense/ie5" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

&lt;xsl:output method=&quot;html&quot; /&gt;

&lt;xsl:template match=&quot;/&quot;&gt;
    &lt;!--
        Your XSL can start here.
        And remember that http://schemas.microsoft.com/intellisense/ie5
        can produce mal-formed XML!
    --&gt;
&lt;/xsl:template&gt;

</xsl:stylesheet>

mod date: 2005-02-23T22:53:45.000Z