forme 0.1.1

Compile-time HTML template engine — plain HTML templates with tpl-* directives generate type-safe Rust rendering functions
Documentation
/* Simple Template Styles */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f5f5f5;
}

.container {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

section {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
    color: #333;
    border-bottom: 3px solid #007bff;
    padding-bottom: 10px;
    margin-top: 0;
}

h2 {
    color: #555;
    margin-top: 0;
}

h3 {
    color: #666;
    margin-top: 0;
}

.card {
    border: 2px solid #007bff;
    padding: 15px;
    border-radius: 6px;
    background: #f0f8ff;
}

ul {
    list-style-type: square;
    padding-left: 20px;
}

li {
    margin: 5px 0;
}

p {
    margin: 10px 0;
}