I finally added a button for adding code fences through custom css. But now I have a problem with language that highlighter choose.
We use Pascal listings a lot on our forum. A see, highlight.js is aware about Delphi, not Pascal. Great. But for my Pascal/Delphi code
```
begin
Writeln(add(4,5)); {user function add}
Writeln(add1(4,5)); {user function add1}
end.
```
it chooses SQL (as it can be seen in class attribute of code elemet); also add and add1 have defferent presentation (probably have meaning for SQL, but complete nonsence for Pascal).
Adding delphi to the fences:
```delphi
begin....
does not help: it adds lang-delphi to class attribute, but sql stays there and presentation does not change at all.
Can anyone suggest how to enable Pascal/Delphi highlightning on Discourse?