commit 7cb8ba159c92d4164b9c11da2e6517e6179862a2 Author: wires <wires@noreply.wires.systems> Date: Thu Mar 20 16:03:40 2025 -0400 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..aaec9ba --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,5 @@ +[package] +name = "chrysopoeia" +version = "0.1.0" +edition = "2024" +license = "GPL-3.0-only" diff --git a/README.md b/README.md new file mode 100644 index 0000000..5b351ff --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Chrysopoeia + +I got mildly annoyed by Hugo's syntax highlighter, so I made this to +post-process my site with [Tree-sitter](https://tree-sitter.github.io/tree-sitter/). diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}