File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ Missing CSS support for HTML documents.
2222- handlebars
2323- php
2424- twig
25+ - md
2526
2627## Remote Style Sheets
2728
Original file line number Diff line number Diff line change 22 "name" : " vscode-html-css" ,
33 "displayName" : " HTML CSS Support" ,
44 "description" : " CSS support for HTML documents" ,
5- "version" : " 0.1.4 " ,
5+ "version" : " 0.1.5 " ,
66 "publisher" : " ecmel" ,
77 "license" : " MIT" ,
88 "homepage" : " https://github.com/ecmel/vscode-html-css" ,
4747 " onLanguage:jade" ,
4848 " onLanguage:handlebars" ,
4949 " onLanguage:php" ,
50- " onLanguage:twig"
50+ " onLanguage:twig" ,
51+ " onLanguage:md"
5152 ],
5253 "main" : " ./out/src/extension" ,
5354 "scripts" : {
Original file line number Diff line number Diff line change @@ -182,7 +182,8 @@ export function activate(context: vsc.ExtensionContext) {
182182 'jade' ,
183183 'handlebars' ,
184184 'php' ,
185- 'twig'
185+ 'twig' ,
186+ 'md'
186187 ] , classServer ) ) ;
187188
188189 let wp = / ( - ? \d * \. \d \w * ) | ( [ ^ \` \~ \! \@ \# \% \^ \& \* \( \) \= \+ \[ \{ \] \} \\ \| \; \: \' \. \" \, \< \> \/ \? \s ] + ) / g;
@@ -196,6 +197,7 @@ export function activate(context: vsc.ExtensionContext) {
196197 context . subscriptions . push ( vsc . languages . setLanguageConfiguration ( 'handlebars' , { wordPattern : wp } ) ) ;
197198 context . subscriptions . push ( vsc . languages . setLanguageConfiguration ( 'php' , { wordPattern : wp } ) ) ;
198199 context . subscriptions . push ( vsc . languages . setLanguageConfiguration ( 'twig' , { wordPattern : wp } ) ) ;
200+ context . subscriptions . push ( vsc . languages . setLanguageConfiguration ( 'md' , { wordPattern : wp } ) ) ;
199201
200202 context . subscriptions . push ( vsc . workspace . onDidChangeConfiguration ( ( e ) => parseRemoteConfig ( ) ) ) ;
201203}
You can’t perform that action at this time.
0 commit comments