From 74d92fd7336f987bd84e34255a2418b8afacbc96 Mon Sep 17 00:00:00 2001 From: Vitaly Slobodin Date: Sat, 11 Oct 2025 11:17:20 +0200 Subject: [PATCH] ruby: Rename `HTML/ERB` to `HTML+ERB` (#40000) Hi! In https://github.com/zed-extensions/ruby/issues/162 we renamed embedded template languages: - `HTML/ERB` to `HTML+ERB` - `YAML/ERB` to `YAML+ERB` - `JS/ERB` to `JS+ERB` This pull request updates the Ruby extension documentation to reflect that change. Thanks! Release Notes: - N/A --- docs/src/languages/ruby.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/languages/ruby.md b/docs/src/languages/ruby.md index bcab5333d7fc3216eb6475acfe47b51013010afe..87210def30ca967da9cdd1a7314961520278adf3 100644 --- a/docs/src/languages/ruby.md +++ b/docs/src/languages/ruby.md @@ -242,7 +242,7 @@ To enable Steep, add `\"steep\"` to the `language_servers` list for Ruby in your ## Setting up Herb -`Herb` is enabled by default for the `HTML/ERB` language. +`Herb` is enabled by default for the `HTML+ERB` language. ## Using the Tailwind CSS Language Server with Ruby @@ -261,7 +261,7 @@ In order to do that, you need to configure the language server so that it knows "tailwindcss-language-server": { "settings": { "includeLanguages": { - "html/erb": "html", + "html+erb": "html", "ruby": "html" }, "experimental": { @@ -396,7 +396,7 @@ To format ERB templates, you can use the `erb-formatter` formatter. This formatt ```jsonc { - "HTML/ERB": { + "HTML+ERB": { "formatter": { "external": { "command": "erb-formatter",