1<documentation title="Closure Linter">
2    <standard>
3    <![CDATA[
4    All javascript files should pass basic Closure Linter tests.
5    ]]>
6    </standard>
7    <code_comparison>
8        <code title="Valid: Valid JS Syntax is used.">
9        <![CDATA[
10var foo = [1, 2<em></em>];
11        ]]>
12        </code>
13        <code title="Invalid: Trailing comma in a javascript array.">
14        <![CDATA[
15var foo = [1, 2<em>,</em>];
16        ]]>
17        </code>
18    </code_comparison>
19</documentation>
20