encre_css/plugins/typography/text_transform/
mod.rs1#![doc = include_str!("README.md")]
2#![doc(alias = "typography")]
3use crate::prelude::build_plugin::*;
4
5#[derive(Debug)]
6pub(crate) struct PluginDefinition;
7
8impl Plugin for PluginDefinition {
9 fn can_handle(&self, context: ContextCanHandle) -> bool {
10 matches!(
11 context.modifier,
12 Modifier::Builtin {
13 value: "uppercase" | "lowercase" | "capitalize" | "normal-case",
14 ..
15 }
16 )
17 }
18
19 fn handle(&self, context: &mut ContextHandle) {
20 if let Modifier::Builtin { value, .. } = context.modifier {
21 let value = if *value == "normal-case" {
22 "none"
23 } else {
24 value
25 };
26
27 context
28 .buffer
29 .line(format_args!("text-transform: {value};"));
30 }
31 }
32}