wao; typo,,

This commit is contained in:
Rowan 2024-12-03 15:18:04 -06:00
parent 50b7737df5
commit 5f745782b0

View file

@ -20,7 +20,7 @@ Roxy's new philosophy is about pluggable behavior. The core is effectively a red
Roxy::process_file("input-file.md", "output-file.html", &mut parser);
```
Hopefully this lets me manage the complexity for whenever I want to add a new feature or parsing ability to the library. A lot of the comlexity still exists in one place, `roxy-cli`, but I'll hopefully break that down over time.
Hopefully this lets me manage the complexity for whenever I want to add a new feature or parsing ability to the library. A lot of the complexity still exists in one place, `roxy-cli`, but I'll hopefully break that down over time.
## What's left
There's a bunch of stuff I didn't get to do. Two things I really want are an RSS feed generator, and streaming file inputs. Right now, the library loads the entire file into memory and works on it when it should be streaming it and processing it in chunks. I didn't have the time or energy to work on that, but maybe later.