| shell-heredoc READMEshell-heredocis a VS Code extension that provides syntax highlighting within bash/shell heredocs based on the delimiter tag.
 #!/bin/bash
/bin/cat << 'JSON'
{ "status": "active", "count": 42 }
JSON
 FeaturesThis extension automatically detects and highlights code within heredoc blocks using the following delimiter mappings: 
| Language | Supported Delimiters |  
| json | JSON |  
| yaml | YAML,YML |  
| shell | SHELL,BASH,ZSH |  
| sql | SQL |  
| html | HTML |  
| xml | XML |  
| javascript | JS,JAVASCRIPT |  
| typescript | TS,TYPESCRIPT |  
| markdown | MARKDOWN,MD |  Installation
Open VS CodeGo to Extensions view (Cmd+Shift+X)Search for "shell-heredoc"Click Install UsageSimply use heredocs in your shell scripts with one of the supported delimiters: cat << SQL
SELECT name, email
FROM users
WHERE active = true;
SQL
 Requirements
VS Code 1.60.0 or higherNo additional dependencies required Extension SettingsThis extension currently does not contribute any configurable settings. Known Issues
Nested heredocs may not highlight correctlySome complex shell syntax within heredocs might interfere with highlighting Release Notes1.0.0
Initial releaseSupport for 9 programming languagesAutomatic syntax detection based on heredoc delimitersWorks with both quoted and unquoted heredoc markers 
 Enjoy enhanced shell scripting with proper syntax highlighting! |  |