initial commit

This commit is contained in:
wires 2025-03-20 16:03:40 -04:00
commit 7cb8ba159c
Signed by: wires
SSH key fingerprint: SHA256:9GtP+M3O2IivPDlw1UY872UPUuJH2gI0yG6ExBxaaiM
4 changed files with 13 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

5
Cargo.toml Normal file
View file

@ -0,0 +1,5 @@
[package]
name = "chrysopoeia"
version = "0.1.0"
edition = "2024"
license = "GPL-3.0-only"

4
README.md Normal file
View file

@ -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/).

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}