timpl 0.1.0-alpha.2

A simple, yet powerful, template engine.
Documentation
<!doctype html>

<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <title>Profile of Rick Sanchez</title>
    <meta name="description" content="Profile of Rick Sanchez writen in Rust by Rick Sanchez">
    <meta name="author" content="Rick Sanchez">
</head>

<body>
    <h1>Rick Sanchez</h1>
    <p>Wubba lubba dub-dub!</p>
    <h2>Occupations</h3>

    <table>
        <thead>
            <tr>
                <th>Name</th>
                <th>Status</th>
            </tr>
        </thead>
        <tbody>
            <tr id="item-1">
                <td>Scientist</td>
                <td>PhD in interdimensional physics</td>
            </tr>
            <tr id="item-2">
                <td>Inventor</td>
                <td>-</td>
            </tr>
            <tr id="item-3">
                <td>Resistance fighter</td>
                <td>Leader of the Rick's Rebellion</td>
            </tr>
            <tr id="item-4">
                <td>Arms dealer</td>
                <td>-</td>
            </tr>
            <tr id="item-5">
                <td>Store owner</td>
                <td>briefly</td>
            </tr>
            <tr id="item-6">
                <td>Leader of The Council of Ricks</td>
                <td>formerly</td>
            </tr>
        </tbody>
    </table>
</body>
</html>