Compare commits

...

5 commits
v2 ... main

Author SHA1 Message Date
Pagwin
2bf95b0295
borsh 2025-12-14 01:44:23 -05:00
Pagwin
b8b19d5c6e
expanded syntax highlighting todo item 2025-12-14 00:03:52 -05:00
Pagwin
a7a0b3cb5d
added footnotes back to TODO 2025-12-13 20:59:51 -05:00
Pagwin
da9ce3dabc
removed completed things from TODO and re-ordered the items in it 2025-12-13 20:19:24 -05:00
Pagwin
233a8e0c39
changelog 2025-12-13 20:06:26 -05:00
2 changed files with 20 additions and 5 deletions

View file

@ -1,5 +1,10 @@
# Revision history for psb # Revision history for psb
## 0.2.0.0 -- 2025-12-13
* Changed parser to use something in house rather than Pandoc
* Made use of Shake's inbuilt progress bar capabilities albeit crudely
## 0.1.0.0 -- YYYY-mm-dd ## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world. * First version. Released on an unsuspecting world.

20
TODO.md
View file

@ -1,11 +1,21 @@
- [ ] Figure out what the fuck is going on with the soft engineering retrospective post or accept it's broken and rewrite the markdown parser later
- [ ] add rst or org support and convert markdown handling to custom parser instead of pandoc
- [ ] process source code blocks with tree sitter https://hackage.haskell.org/package/tree-sitter
- Alternatively consider skylighting https://hackage.haskell.org/package/skylighting
- [ ] minify js and css when copying over instead of just copying - [ ] minify js and css when copying over instead of just copying
- [ ] setup fingerprinting in file names for css and js - [ ] setup fingerprinting in file names for css and js
- [ ] process source code blocks to syntax highlight them
- tree sitter https://hackage.haskell.org/package/tree-sitter
- Alternatively do the Rust <-> Haskell binding myself
- https://www.well-typed.com/blog/2023/03/purgatory/
- https://willmcpherson2.substack.com/p/calling-rust-from-haskell
- https://github.com/BeFunctional/haskell-foreign-rust
- https://github.com/BeFunctional/haskell-rust-ffi
- Borsh
- https://crates.io/crates/tree-sitter-highlight
- Or potentially https://docs.rs/arborium/latest/arborium/
- Alternatively consider skylighting https://hackage.haskell.org/package/skylighting
- [ ] dev server setup (with live reloading) - [ ] dev server setup (with live reloading)
- https://hackage-content.haskell.org/package/warp-3.4.10 - https://hackage-content.haskell.org/package/warp-3.4.10
- https://hackage.haskell.org/package/file-embed - https://hackage.haskell.org/package/file-embed
- https://hackage.haskell.org/package/fsnotify - https://hackage.haskell.org/package/fsnotify
- [ ] see if performance can be improved (it isn't slow atm but it definitely feels like there's a bottleneck) - [ ] Make a function which takes IR and spits out some kind of table of contents
- [ ] Add rst or org support and convert markdown handling to custom parser instead of pandoc
- [ ] Add in functionality for footnotes
- [ ] see if performance can be improved, it shouldn't be necessary but if I'm looking at doing something for this and everything above this got checked off then this is a sensible next thing