1<documentation title="Todo Comments"> 2 <standard> 3 <![CDATA[ 4 TODO Statements should be taken care of. 5 ]]> 6 </standard> 7 <code_comparison> 8 <code title="Valid: A comment without a todo."> 9 <![CDATA[ 10// <em>Handle strange case</em> 11if ($test) { 12 $var = 1; 13} 14 ]]> 15 </code> 16 <code title="Invalid: A todo comment."> 17 <![CDATA[ 18// <em>TODO</em>: This needs to be fixed! 19if ($test) { 20 $var = 1; 21} 22 ]]> 23 </code> 24 </code_comparison> 25</documentation> 26