The schema tag, javascript tag and stylesheet tag could get the appropriate highlighting. Would this be possible? I think it should just piggy-back on how <script> and <style> highlighting works.
{% javascript %}
// highlight this code as Javascript
{% endjavascript %}
{% stylesheet %}
// highlight this code as CSS (or SCSS if you can't differentiate the next one)
{% endstylesheet %}
{% stylesheet 'scss' %}
// highlight this code as SCSS
{% endstylesheet %}
{% schema %}
// highlight this code as JSON or Javascript
{% endschema %}
The schema tag, javascript tag and stylesheet tag could get the appropriate highlighting. Would this be possible? I think it should just piggy-back on how
<script>and<style>highlighting works.{% javascript %} // highlight this code as Javascript {% endjavascript %} {% stylesheet %} // highlight this code as CSS (or SCSS if you can't differentiate the next one) {% endstylesheet %} {% stylesheet 'scss' %} // highlight this code as SCSS {% endstylesheet %} {% schema %} // highlight this code as JSON or Javascript {% endschema %}