overleaf/services/web/frontend/js/features/source-editor/languages/index.ts
Tim Down 7f37ba737c Move source editor out of module (#12457)
* Update Copybara options in preparation for open-sourcing the source editor

* Move files

* Update paths

* Remove source-editor module and checks for its existence

* Explicitly mention CM6 license in files that contain code adapted from CM6

GitOrigin-RevId: 89b7cc2b409db01ad103198ccbd1b126ab56349b
2023-04-13 08:40:56 +00:00

61 lines
1 KiB
TypeScript

import { LanguageDescription } from '@codemirror/language'
export const languages = [
LanguageDescription.of({
name: 'latex',
extensions: [
'tex',
'bib',
'sty',
'cls',
'clo',
'bst',
'bbl',
'pdf_tex',
'pdf_t',
'map',
'fd',
'enc',
'def',
'mf',
'pgf',
'tikz',
'bbx',
'cbx',
'dbx',
'lbx',
'lco',
'ldf',
'xmpdata',
'Rnw',
'lyx',
'inc',
'dtx',
'hak',
'eps_tex',
'brf',
'ins',
'hva',
'Rtex',
'rtex',
'pstex',
'pstex_t',
'gin',
'fontspec',
'pygstyle',
'pygtex',
'ps_tex',
],
load: () => {
return import('./latex').then(m => m.latex())
},
}),
LanguageDescription.of({
name: 'markdown',
extensions: ['md', 'markdown'],
// @ts-ignore TODO: find out how to add support extensions
load: () => {
return import('./markdown').then(m => m.markdown())
},
}),
]