Support code syntax highlighting
Closed this issue · 3 comments
krukow commented
Proposal to use highlight.js
: https://highlightjs.org/
would enable things like
function log_generator () {
return function {} {console.log("You've got it");}
}
class A
{
public void Bar()
{
Console.WriteLine("You've got it");
}
}
class A
def foo(arg)
"You've got it, #{arg}"
end
end
(defn foo [] (println "You've got it"))
cschleiden commented
Implemented by 15e0867
cschleiden commented
krukow commented
👍 Thanks!