### YAML Continuous Block Highlighting Source: https://github.com/harrydowning/vscode-yaml-embedded-languages/blob/master/README.md Shows how to activate syntax highlighting for all subsequent YAML block-scalars from a specific point onwards. This is achieved by placing a comment with the extension name followed by the language identifier. This is ideal for larger sections of embedded code. ```yaml # yaml-embedded-languages: example: | highlighted ``` -------------------------------- ### YAML Single Block Highlighting Source: https://github.com/harrydowning/vscode-yaml-embedded-languages/blob/master/README.md Demonstrates how to enable syntax highlighting for a single YAML block-scalar by specifying the language identifier in a comment next to the block identifier. This is useful for isolated code snippets within YAML files. ```yaml example: | # highlighted ``` -------------------------------- ### YAML Disable Highlighting Source: https://github.com/harrydowning/vscode-yaml-embedded-languages/blob/master/README.md Illustrates how to disable syntax highlighting for any subsequent YAML block-scalars. This is done by placing a comment with just the extension name, effectively resetting the highlighting mode for the rest of the file. ```yaml # yaml-embedded-languages example: | not highlighted ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.