diff --git a/CHANGELOG.md b/CHANGELOG.md index df7bd474bc28..f088d873a217 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Handle when `process.env.DEBUG` is a boolean in `@tailwindcss/node` ([#18485](https://github.com/tailwindlabs/tailwindcss/pull/18485)) - Ignore consecutive semicolons in the CSS parser ([#18532](https://github.com/tailwindlabs/tailwindcss/pull/18532)) - Center the dropdown icon added to an input with a paired datalist ([#18511](https://github.com/tailwindlabs/tailwindcss/pull/18511)) +- Extract candidates in Slang templates ([#18565](https://github.com/tailwindlabs/tailwindcss/pull/18565)) ## [4.1.11] - 2025-06-26 diff --git a/crates/oxide/src/scanner/mod.rs b/crates/oxide/src/scanner/mod.rs index 0d2fceba60bb..469c58146306 100644 --- a/crates/oxide/src/scanner/mod.rs +++ b/crates/oxide/src/scanner/mod.rs @@ -488,7 +488,7 @@ pub fn pre_process_input(content: &[u8], extension: &str) -> Vec { "json" => Json.process(content), "pug" => Pug.process(content), "rb" | "erb" => Ruby.process(content), - "slim" => Slim.process(content), + "slim" | "slang" => Slim.process(content), "svelte" | "rs" => Svelte.process(content), "vue" => Vue.process(content), _ => content.to_vec(),