Skip to content
ilyana.dev
TwitterGithubLinkedIn

Prism Code Renderer

blogging, coding, web development2 min read

prism code renderer

The code displayed on my blog now looks very aesthetic. Wondering why? I installed the Prism code renderer.

What Prism Does

According to their website, Prism is a lightweight, extensible syntax highlighter. Essentially, it makes code look nice. There are also several themes you can choose from, depending on personal preference.

Before I added Prism to my site, any code I displayed looked like this:

Bad Code

Ugly, right? Once I added prism to my blog, things looked a whole lot better:

Good Code

After a bit more adjustment, the code looked like this:

Great Code

How to Make it Work

To install Prism, assuming you're using Gatsby, you'll want to navigate to your website's root file in the command line and enter:

npm install --save gatsby-transformer-remark gatsby-remark-prismjs prismjs

You'll also want to make the changes detailed here to your website's code.

If you want to change your theme, simply replace "okaidia" with the name of your preferred theme.

All of this is covered in additional detail in the instructions Gatsby provides.

Rendering Different Languages

To render different languages, you simply need to specify the language being used at the beginning of each block of code. For example to render C#, you would write:

Rendering C#

You can visit the Prism website to see a list of all supported languages and how to render them.

Fixing "Number Circles"

When I first added Prism to my website, I noticed a very annoying thing happening when numbers were rendered:

Number Circles!

Turns out, the Gatsby template I used, gatsby starter netlify cms, had a file called Pricing.js, and it was this file that was resulting in the strange formatting. Since I'm not selling anything on my blog, pricing is entirely unnecessary. I deleted the file, and now my code looks like this:

Number Circles Gone!

Summary

  • Prism is a great tool if you want to display code on your website without having to resort to screenshots
    • It results in aesthetically pleasing code in the theme of your choice
  • This Tutorial explains how to set Prism up on a Gatsby site.
  • Prism renders many different languages
  • I had trouble with "number circles" in my displayed code, but I fixed that by deleting the Pricing.js file in my Gatsby site.

Thanks for reading! I hope you find this and other articles here at ilyanaDev helpful! Be sure to follow me on Twitter @ilyanaDev.