2020-02-24 04:23:18 +00:00
|
|
|
const mimeToMode = {
|
2020-02-24 18:44:50 +00:00
|
|
|
'text/plain': 'plain_text',
|
|
|
|
|
'text/html': 'html',
|
|
|
|
|
'application/xml': 'xml',
|
|
|
|
|
'application/hal+json': 'json',
|
|
|
|
|
'application/json': 'json',
|
2020-02-24 04:23:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getEditorLangForMimeType(mimeType) {
|
2020-02-24 18:44:50 +00:00
|
|
|
return mimeToMode[mimeType] || 'plain_text'
|
2020-02-24 04:23:18 +00:00
|
|
|
}
|