You can do `<script type="anything-you-want"></script>`. It's just an attribute. The browser will not run any code in the tag because the `type`-attribute
is invalid now.
The next step is to create a compiler for your `anything-you-want` language. That means it transforms the textual contents of the script tag into a
string of javascript, and then calls `eval` on the string.