rustache-lists 0.1.2

Mustache templating engine for rust with a bugfix for lists
Documentation
<html>
  <head>
    <title>Rustache End-To-End</title>
  </head>
  <body>
    <div class="main">
      Team Awesome:
      <table>
        <tr>
          <th>First:</th>
          <th>Last:</th>
        {{# people }}
          {{& information }}
          {{> section_with_partial.partial }}
        {{/ people }}
      </table>
    </div>
    <p>{{> section_with_partial.partial }}</p>
  </body>
</html>