Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Template Support #137

Merged
merged 24 commits into from
Aug 20, 2017
Prev Previous commit
Next Next commit
Add less syntax
  • Loading branch information
Ives van Hoorne committed Aug 20, 2017
commit 8bf2eeef1e9ba3b91c7a856dccc96b4d51c3b4a9
2 changes: 2 additions & 0 deletions src/app/components/sandbox/CodeEditor/Monaco.js
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,8 @@ export default class CodeEditor extends React.PureComponent<Props, State> {
return 'html';
} else if (kind[1] === 'vue') {
return 'html';
} else if (kind[1] === 'less') {
return 'less';
} else if (kind[1] === 'md') {
return 'markdown';
} else if (/jsx?$/.test(kind[1])) {
Expand Down