The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<documentation title="Semicolon Spacing">
    <standard>
    <![CDATA[
    Semicolons should not have spaces before them.
    ]]>
    </standard>
    <code_comparison>
        <code title="Valid: No space before the semicolon.">
        <![CDATA[
echo "hi"<em></em>;
]]>
        </code>
        <code title="Invalid: Space before the semicolon.">
        <![CDATA[
echo "hi"<em> </em>;
]]>
        </code>
    </code_comparison>
</documentation>