Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>vscode-bemmetNew to Visual Studio Code? Get it now.
vscode-bemmet

vscode-bemmet

German Volkov

|
12,204 installs
| (0) | Free
VSCode plugin to expand bemmet abbreviation into BEMJSON.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

VSCode "Bemmet" Extension

This is VS Code extension for BEMMET. Simple Emmet-like tool to expand abbreviations into BEMJSON.

Features

Here you can see what this extension actually does.

For example, you have this this abbreviation:

menu>__item*2>link_theme_islands

Select it, press Alt+B, and it will be transformed into BEMJSON:

{
    block: 'menu',
    content: [
        {
            block: 'menu',
            elem: 'item',
            content: {
                block: 'link',
                mods: {
                    theme: 'islands'
                },
                content: {}
            }
        },
        {
            block: 'menu',
            elem: 'item',
            content: {
                block: 'link',
                mods: {
                    theme: 'islands'
                },
                content: {}
            }
        }
    ]
}

Install

You can install this extension via ext install bemmet

Usage

  1. Write abbreviation.
  2. Select it.
  3. Press Alt+B or choose 'bemmet: convert' command.
  4. Your abbreviation will be replaced by BEMJSON.

Release Notes

0.1.0

Initial release of vscode-bemmet, contains only basic functionality:

  • press Alt+B or choose 'bemmet: convert' command to expand abbreviations into BEMJSON

Author

  • GitHub
  • Website
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft