odin-lang / odin-lang.org

http://odin-lang.org
26 stars 83 forks source link

Improve overview.md code highlighting #121

Closed czkz closed 1 year ago

czkz commented 1 year ago

I suggest reviewing changes per-commit.

Used this command to find code blocks without language specified, could be useful to check other files:

awk '/^```/ { inside=!inside; if(inside) bad=($0=="```"); else if(bad) print NR": "$0"\n"; } inside && bad { print NR": "$0 }' content/docs/overview.md