Tholp's bespoke website generator

fix unicode in parameters crashing

Tholp1 da6c7a4a b7afa10e

+1 -1
+1 -1
src/stringtools.rs
··· 41 41 } 42 42 43 43 let mut i = 0; 44 - while i < tok.len() { 44 + while i < tok.chars().count() { 45 45 let c = tok.chars().nth(i).unwrap(); 46 46 i += 1; 47 47