mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-23 07:39:55 +00:00
13 lines
372 B
JavaScript
13 lines
372 B
JavaScript
const mimeToMode = {
|
|
"text/plain": "text/x-yaml",
|
|
"text/html": "htmlmixed",
|
|
"application/xml": "application/xml",
|
|
"application/hal+json": "application/ld+json",
|
|
"application/vnd.api+json": "application/ld+json",
|
|
"application/json": "application/ld+json",
|
|
}
|
|
|
|
export function getEditorLangForMimeType(mimeType) {
|
|
return mimeToMode[mimeType] || "text/x-yaml"
|
|
}
|