---input---
<html>
  <head><title>$title</title></head>
  <body>
    <table>
      #for $client in $clients
      <tr>
        <td>$client.surname, $client.firstname</td>
        <td><a href="mailto:$client.email">$client.email</a></td>
      </tr>
      #end for
    </table>
  </body>
</html>

---tokens---
'<html>\n  <head><title>' Other
'$'           Comment.Preproc
'title'       Name
'</title></head>\n  <body>\n    <table>\n      ' Other
'#for'        Comment.Preproc
' '           Text
'$'           Comment.Preproc
'client'      Name
' '           Text
'in'          Operator.Word
' '           Text
'$'           Comment.Preproc
'clients'     Name
'\n      <tr>\n        <td>' Other
'$'           Comment.Preproc
'client'      Name
'.'           Operator
'surname'     Name
', '          Other
'$'           Comment.Preproc
'client'      Name
'.'           Operator
'firstname'   Name
'</td>\n        <td><a href="mailto:' Other
'$'           Comment.Preproc
'client'      Name
'.'           Operator
'email'       Name
'">'          Other
'$'           Comment.Preproc
'client'      Name
'.'           Operator
'email'       Name
'</a></td>\n      </tr>\n      ' Other
'#end for'    Comment.Preproc
'\n    </table>\n  </body>\n</html>\n' Other
