css_ast/types/
autospace.rs

1#![allow(warnings)]
2use css_parse::{Cursor, CursorSink, Parse, Parser, Peek, Result as ParserResult, SourceOffset, T, ToCursors};
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}