DEV Community

Discussion on: VS Code: You don't need that extension

Collapse
 
pzelnip profile image
Adam Parkin

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. :/

Collapse
 
robole profile image
Rob OLeary • Edited

Yes, through emmet.includeLanguages. To include markdown, you can add the settings below:

"emmet.excludeLanguages": [],
"emmet.includeLanguages": {"markdown": "html"},
Enter fullscreen mode Exit fullscreen mode