platforms

Platforms

Name(s) of hardware and/or software platform(s) on which the <code> is intended to run. It is assumed that each such platform will have a one-word “name”, and multiple platform names will be separated by spaces.

Used on Element: <code>

ValueMeaning
Text, numbers, or special charactersPlatform on which the <code> is intended to run, for example, “Mac OSX”.
Restriction@platforms is an optional attribute; there is no default.

Example

...
<code code-type="xml" code-version="1.0"
  language="xslt" language-version="2.0"
  platforms="windows mac unix" executable="no"
  xml:space="preserve" orientation="portrait"
  position="anchor">
&lt;xsl:template match="node()" mode="compare"&gt;
  &lt;xsl:copy copy-namespaces="no"&gt;
    &lt;xsl:copy-of select="@*"/&gt;
    &lt;xsl:apply-templates mode="compare"/&gt;
  &lt;/xsl:copy&gt;
&lt;/xsl:template&gt;
</code>
...