I’m sure this is has been thought about already, but what is involved in making a syntax highlighter for the forum for .tid files? I know there is tid highlighter for VSCode, but I have no idea if any part of that is applicable to use on the forum.
This is default highlighting using the ```...```
code fence:
<$list filter="[tag[Complete]">
<div><view field=caption><$view field=title/></$view></div>
Which isn’t bad for a default.
For those that don’t know, you can specify the language of the highlighting in the fencce like this:
```ruby
require "nokogiri"
puts"Hello, World!"
```
which render as
require "nokogiri"
puts"Hello, World!"