api-client/functions/editorutils.js

12 lines
270 B
JavaScript
Raw Normal View History

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',
}
export function getEditorLangForMimeType(mimeType) {
2020-02-24 18:44:50 +00:00
return mimeToMode[mimeType] || 'plain_text'
}