How might I change my Atom configuration so that HTML files open as HTML with JSX textContent
(a language from language-javascript-jsx)?
Here are the contents of my config.cson
up until customFileTypes
ends.
"*":
core:
closeEmptyWindows: false
customFileTypes:
"text.html": [
"jsx"
]
I’ve tried all sorts of combinations here, like source.html
, text.html.basic
for the key I’ve tried and source.jsx
or text.jsx
for the value.