Skip to main content

ACCENT_MARKERS

Constant ACCENT_MARKERS 

Source
pub const ACCENT_MARKERS: &[u8] = b"'`^:~&,/_";
Expand description

ASCII characters that act as accent markers in the spec.

Kept as a &[u8] slice for downstream consumers that want to enumerate the marker bytes; runtime membership checks go through the u128 bitmap ACCENT_MARKER_MASK instead, which lowers to a single shift + AND.