css_ast/types/autospace.rs
1#![allow(unused)]
2use super::prelude::*;
3
4use crate::Todo;
5
6// https://drafts.csswg.org/css-text-4/#typedef-autospace
7// <autospace> = no-autospace | [ ideograph-alpha || ideograph-numeric || punctuation ] || [ insert | replace ]
8pub type Autospace = Todo;
9
10#[cfg(test)]
11mod tests {
12 use super::*;
13 use crate::CssAtomSet;
14}