initial commit

This commit is contained in:
2025-12-10 13:39:25 +02:00
parent 8de7986d41
commit 165b201c69
6 changed files with 28 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/target

7
Cargo.lock generated Normal file
View File

@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "marginal"
version = "0.1.0"

6
Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "marginal"
version = "0.0.1"
edition = "2024"
[dependencies]

View File

@@ -1,2 +1,8 @@
# marginal
## marginal
Marginal is a crazy fast static site generator. Support for different features is coming, but first...
1. Parse Markdown
2. Generate HTML
3. Project directory structure
4. Common header/footer support

1
rust-toolchain Normal file
View File

@@ -0,0 +1 @@
stable

6
src/main.rs Normal file
View File

@@ -0,0 +1,6 @@
mod ast;
fn main() {
}