Codeblocks

Codeblocks in Markdown are wrapped inside 3 backticks. Optionally, you can define a language of codeblock to enable syntax highlighting.


```js
const http = require('http')
http.createServer(() => {
}).listen(3000)
```