add qmark to static-site

This commit is contained in:
Luke Boswell 2023-03-01 18:40:29 +11:00
parent c9ffedb483
commit 093f8e297d
No known key found for this signature in database
GPG Key ID: F6DB3C9DB47377B0

View File

@ -44,6 +44,9 @@ pub fn highlight_roc_code(code: &str) -> String {
Token::Comma => {
buf = push_html_span(buf, current_text, "comma");
}
Token::QuestionMark => {
buf = push_html_span(buf, current_text, "qmark");
}
Token::Colon => {
buf = push_html_span(buf, current_text, "colon");
}