1.0.0 • Published 5 years ago

editorable v1.0.0

Weekly downloads
3
License
-
Repository
-
Last release
5 years ago

editorable

Make code editor more configurable!

Usage

Add a new language:

import { registerLanguage } from '../package/service'
export const v = registerLanguage({
    id: 'tql',
    definition: () => import('./tql.js'),
    config: () => import('./tql.config.js'),
});

The config files tql.config.js and tql.js please see example/tql folder.