css_ast 0.0.25

CSS Abstract Syntax Trees with visitable nodes and style value types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(unused)]
use super::prelude::*;

use crate::Todo;

/// <https://drafts.csswg.org/css-text-4/#typedef-autospace>
///
/// ```text,ignore
/// <autospace> = no-autospace | [ ideograph-alpha || ideograph-numeric || punctuation ] || [ insert | replace ]
/// ```
pub type Autospace = Todo;

#[cfg(test)]
mod tests {
	use super::*;
	use crate::CssAtomSet;
}