| Crates.io | palpad |
| lib.rs | palpad |
| version | 0.2.0 |
| created_at | 2025-06-26 10:33:02.999253+00 |
| updated_at | 2025-12-30 08:44:45.914845+00 |
| description | A really simple static site generator |
| homepage | https://git.spacejunk.sh/palpad.git |
| repository | https://git.spacejunk.sh/palpad.git |
| max_upload_size | |
| id | 1727151 |
| size | 42,998 |
A really simple markdown parser + static site generator.
It supports a small subset of the markdown spec. The goal is to be able to host
a directory of markdown files, and then use palpad to convert the directory
to valid HTML.
This is a code block:
int main() {
int a = 1;
int b = 2;
string s = "Hello this is a **bold** statement. Here's a backtick` for you";
int c = a + b;
return c;
}
This, however, isn't ```a code block`.