#![doc = include_str!("README.md")]
#![doc(alias = "typography")]
use crate::prelude::build_plugin::*;
#[derive(Debug)]
pub(crate) struct PluginDefinition;
impl Plugin for PluginDefinition {
fn can_handle(&self, context: ContextCanHandle) -> bool {
matches!(
context.modifier,
Modifier::Builtin {
value: "uppercase" | "lowercase" | "capitalize" | "normal-case",
..
}
)
}
fn handle(&self, context: &mut ContextHandle) {
if let Modifier::Builtin { value, .. } = context.modifier {
let value = if *value == "normal-case" {
"none"
} else {
value
};
context
.buffer
.line(format_args!("text-transform: {value};"));
}
}
}