ruby: Rename `HTML/ERB` to `HTML+ERB` (#40000)

Vitaly Slobodin created

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

Change summary

docs/src/languages/ruby.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Detailed changes

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",