added example selector, added share button, added saving to local storage, layout change

This commit is contained in:
Parker TenBroeck 2026-01-10 11:16:11 -05:00
parent 9dcef68d82
commit 2edc7aca3c
8 changed files with 427 additions and 70 deletions

View file

@ -96,7 +96,7 @@ fn begin_ident(c: char) -> bool {
}
fn continue_ident(c: char) -> bool {
c.is_alphanumeric() || c == '_' || (!c.is_ascii() && !c.is_control() && !c.is_whitespace())
c.is_alphanumeric() || c == '_' || c=='\'' || (!c.is_ascii() && !c.is_control() && !c.is_whitespace())
}
impl<'a> std::iter::Iterator for Lexer<'a> {