I've started a new job working on shopify templates and am having trouble getting the syntax highlighting to work in VSCode. I have installed the Liquid Languages Support and Shopify Liquid Template Snippets extensions, but on my .liquid files there is no syntax highlighting inside the {% schema %} or {% stylesheet %} tags. Is there an extension or way inside VSCode to get this to work, similar to how a regular html file would recognize <style> or <script> tags?
Including screenshots of the {% schema %} and {% stylesheet %} tags with no syntax highlighting, and other liquid tags with working syntax highlighting. The file is in HTML Liquid language mode.



schemaandstylesheetobjects content are not liquid code. The schema is JSON syntax andstylesheetis CSS. That's why you don't get any highlights there. - drip