We're a place where coders share, stay up-to-date and grow their careers.
Is there a way to make some of those Emmet expansions available in non-HTML files? Like I do most of my work in Python and Markdown, so that lorem expansion isn't available. :/
lorem
Yes, through emmet.includeLanguages. To include markdown, you can add the settings below:
"emmet.excludeLanguages": [], "emmet.includeLanguages": {"markdown": "html"},
Is there a way to make some of those Emmet expansions available in non-HTML files? Like I do most of my work in Python and Markdown, so that
lorem
expansion isn't available. :/Yes, through emmet.includeLanguages. To include markdown, you can add the settings below: