This repository was archived by the owner on Dec 15, 2022. It is now read-only.
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Improvement: add support for msxml:script tags #48
Open
Description
It would be super cool if support for the msxml:script tag could be included.
Syntax is the following:
<msxsl:script language="JScript" other="arguments">
<![CDATA[
// javascript code, include source.js
]]>
</msxsl:script>
C# code could have some additional Information in XML tags, like
<msxsl:script language="C#" other="arguments">
<msxsl:assembly name="System.Web" />
<![CDATA[
// C#-code, include source.cs
]]>
</msxml:script>
For C# I've also seen language="CSharp"
, I don't know which version is more common.