1. Menambahkan CSS ke dalam <head>
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-tomorrow.min.css" rel="stylesheet"/>
2. Menambahkan Javascript Prism.js di akhir sebelum </body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-ruby.min.js"></script>
<pre><code class="language-ruby">
def hello_world
puts "Hello, world!"
end
hello_world
</code></pre>
def hello_world
puts "Hello, world!"
end
hello_world