Static site generator built in rust that generates HTML from markdown
- Build using
cargo build --release - Copy the ssg binary in
target/release/to a dir in PATH - Run
ssg, use--helpflag to print help
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
</head>
<body>
<div>{{ content | safe }}</div>
</body>
</html>