(name: &str)
| 31 | const PREVIEW_LINE_COUNT: usize = 30; |
| 32 | |
| 33 | fn strip_css_prefix(name: &str) -> &str { |
| 34 | name.strip_prefix("css-").unwrap_or(name) |
| 35 | } |
| 36 | |
| 37 | /// Type alias for property descriptions map |
| 38 | type PropertyDescriptions = HashMap<String, String>; |