forme 0.1.1

Compile-time HTML template engine — plain HTML templates with tpl-* directives generate type-safe Rust rendering functions
Documentation
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta content="width=device-width, initial-scale=1.0" name="viewport">
    <title>Simple Template Example</title>
    <link href="simple.css" rel="stylesheet">
</head>
<body>
    <div class="container">
        <h1>Template System Example</h1>
        
        <section></section>
            <h2>Welcome Message</h2>
            <p>This is a simple HTML template that demonstrates the basic structure.</p>
        <section>
            <h2>Features</h2>
            <ul>
                <li>Static HTML generation</li>
                <li>Template-based rendering</li>
                <li>Rust code generation</li>
            </ul>
        </section>

        <section>
            <h2>Sample Content</h2>
            <div class="card">
                <h3>Card Title</h3>
                <p>This is a sample card with some content.</p>
            </div>
        </section>
    </div>
</body>
</html>