Testing prism

See how codes are rendered using "highlight.js"

Ruby

    
      variable = "test"
      if variable
        # This will put the content of variable
        puts variable
        result = 1 + 3
        puts result
      end
    
  

PHP

    
      <?php
        $test = "hello world";
        echo $test;
        $SomeObject = new SomeObject();
      ?>
    
  

HTML

    
      <link rel="stylesheet" href="/path/to/styles/default.css">
      <script src="/path/to/highlight.min.js"></script>
      <script>hljs.initHighlightingOnLoad();</script>
    
  

Summary