Ive now added functionality to display code in my blog posts,
so you may see some code contribution posts in here from time to time.
It was surprisingly simple to integrate, and my code snippets can be styled nicely too.
Obligatory example code post below....
<?php
function message()
{
$message = 'Hello World!';
return $message;
}
echo message();
?>