I guess this is a test post to try out how syntax highlighting look on this template.
Syntax highlighting is made possible by Code Syntax Block, and powered by Prism.js.
Here’s some CSS:
div.apple .pen {
display: block;
margin: 0 auto;
}
Here’s some HTML:
<div class="apple">
<div class="pen">Some text here.</div>
</div>
Here’s some PHP:
class Hello_World
{
const hello = "Hello";
const world = "World";
function sayHello
{
$helloWorld = self::hello . ' '. self::world;
echo $helloWorld;
}
}