Added syntax highlighting to code blocks using rehype-pretty-code. One of those small touches that makes a big difference in how writing about code actually reads.

It supports inline code const test = () => console.log('hello world');

And code blocks:

const test = () => {
  console.log('hello world');
};