⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

Module html_tokenizer

Module html_tokenizer 

Source
Expand description

HTML Tokenizer

Implements a state-machine HTML tokenizer that converts raw HTML bytes into a stream of tokens (start tags, end tags, text, comments, doctype). Handles entity references (&, <, >, ") and void elements.

Structs§

Attribute
An HTML attribute (name=value pair)
HtmlTokenizer
HTML tokenizer that converts input bytes into tokens

Enums§

Token
Tokens produced by the HTML tokenizer