- In the `RawDataDisplay` component, add syntax highlighting to the Object Content field. - One way to implement it could be to extract the file extension form the Object Name field and use that to identify the language. - Eg: `script.js` ➡️ `js` ➡️ `javascript` - Maybe `js` itself will work and the last transformation of `js` to `javascript` might not be required, but then would `mjs` work? - A dynamic syntax highlighter would be required, not a static one, because nothing is server rendered and files can be of any language. - Language support will have to be decided. - Maybe HTML, CSS, JS, Shell, Bash, YAML and Python for now.
RawDataDisplaycomponent, add syntax highlighting to the Object Content field.script.js➡️js➡️javascriptjsitself will work and the last transformation ofjstojavascriptmight not be required, but then wouldmjswork?