Specs that should NOT be generated automatically. These specs either: - Are not real specs (e.g., easter eggs like css-egg) - Have been superseded by other specs
(spec_name: &str)
| 4 | /// - Are not real specs (e.g., easter eggs like css-egg) |
| 5 | /// - Have been superseded by other specs |
| 6 | pub fn is_excluded_spec(spec_name: &str) -> bool { |
| 7 | let name = spec_name.strip_prefix("css-").unwrap_or(spec_name); |
| 8 | EXCLUDED_SPECS.contains(&name) |
| 9 | } |
| 10 | |
| 11 | /// List of specs to exclude from automatic generation. |
| 12 | const EXCLUDED_SPECS: &[&str] = &[ |