Is there a way how to force Visual Studio Web Essentials to insert single quotes instead of double quotes?
For instance so that div.col-xs-1 TAB produces <div class='col-xs-1'></div> instead of default <div class="col-xs-1"></div>?
I am using Visual Studio 2013 Update 4 with Web Essentials 2013 v. 2.5.3.
To get single quotes working with JSX you will need to update or create the
syntaxProfiles.jsonin~/emmetwith the syntax profile. If~/emmetdoes not exist create it.The key is the file extension and the value is the name of the profile that extension will use.
So in
~/emmet/syntaxProfiles.jsonAnd in
~/emmet/profiles.jsonThis should work for most editors but I have only tried in atom. https://github.com/emmetio/emmet-atom/issues/68