Added syntax highlighting for code blocks for mdx files using rehype-pretty-code

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

And code blocks:

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