Update parser

This commit is contained in:
Stefan Menner
2025-06-03 17:38:11 +02:00
parent d2589affe5
commit 8fc8dc1cc9
3 changed files with 238 additions and 446 deletions

View File

@@ -7,7 +7,7 @@ use parse::parse;
fn main() -> Result<(), Box<dyn std::error::Error>> {
env_logger::init();
let html = read("test_vc.html")?;
let html = read("test_mordit.html")?;
parse(&html);
Ok(())
}