Tholp's bespoke website generator

fix unicode in parameters crashing

Tholp1 da6c7a4a b7afa10e

Changed files
+1 -1
src
+1 -1
src/stringtools.rs
···
}
let mut i = 0;
-
while i < tok.len() {
+
while i < tok.chars().count() {
let c = tok.chars().nth(i).unwrap();
i += 1;