mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 22:02:55 +01:00
Fix incorrect filenames for liquid
Turns out the convention is to have .liquid after .html. Also, I didn't implement liquid with CSS so removed that
This commit is contained in:
parent
2e51a90014
commit
c5f090d034
1 changed files with 1 additions and 1 deletions
|
|
@ -7,6 +7,6 @@ import { registerLanguage } from '../_.contribution';
|
|||
|
||||
registerLanguage({
|
||||
id: 'liquid',
|
||||
extensions: ['.liquid', '.liquid.html', '.liquid.css'],
|
||||
extensions: ['.liquid', '.html.liquid'],
|
||||
loader: () => import('./liquid')
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue