1<documentation title="JSHint">
2    <standard>
3    <![CDATA[
4    All javascript files should pass basic JSHint tests.
5    ]]>
6    </standard>
7    <code_comparison>
8        <code title="Valid: Valid JS Syntax is used.">
9        <![CDATA[
10<em>var</em> foo = 5;
11        ]]>
12        </code>
13        <code title="Invalid: The Javascript is using an undefined variable.">
14        <![CDATA[
15<em></em>foo = 5;
16        ]]>
17        </code>
18    </code_comparison>
19</documentation>
20