DEV Community

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

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