2020-02-24 04:23:18 +00:00
|
|
|
const mimeToMode = {
|
2020-02-25 02:06:23 +00:00
|
|
|
"text/plain": "plain_text",
|
|
|
|
|
"text/html": "html",
|
|
|
|
|
"application/xml": "xml",
|
|
|
|
|
"application/hal+json": "json",
|
2020-08-19 04:41:06 +00:00
|
|
|
"application/vnd.api+json": "json",
|
2020-02-25 02:06:23 +00:00
|
|
|
"application/json": "json",
|
2020-02-24 04:23:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getEditorLangForMimeType(mimeType) {
|
2020-02-25 02:06:23 +00:00
|
|
|
return mimeToMode[mimeType] || "plain_text"
|
2020-02-24 04:23:18 +00:00
|
|
|
}
|