Adding syntax highlighting to micro.blog.

If you wrap code in fences (```) on micro.blog, you’ll be presented with a code block with no syntax highlighting. This just won’t do.

To enable syntax highlighting on any theme, head to your Design tab, click on “Edit Custom Theme”, then “New Plugin”.

Enter whatever name floats your boat, and paste https://github.com/joshleblanc/plugin-syntax-highlighting into the Clone URL box.

Give micro.blog a few seconds to update, and you should see your code in all its highlighted glory. To specify the language, just add the language name after the fences (```ruby for example)

For example:

def hello_world
  p "Hello, World!"
end
function helloWorld() {
  console.log("Hello, World!");
}