How To Add highlight.js To Your Website Updated on August 16, 2021 by Christopher Maiorana 1 Minutes, 33 Seconds to Read It’s easy to use the highlight.js library to improve code snippets on your website. Basically, highlight.js lets you easily provide high-quality syntax highlighting without requiring a lot of effort on your part. We’re going to show you how to include the code library on any page, and how you can do it in WordPress. How To Add highlight.js Scripts With HTML You can easily add the necessary scripts to any HTML page for which you have edit access. Open your HTML file in a text editor Add scripts to head section using the provided CDN links:<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/styles/default.min.css"> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/highlight.min.js"></script> Make sure to add the initiation script<script>hljs.initHighlightingOnLoad();</script> Save your file Now, highlight.js will be able to automatically highlight your various code snippets, but should it fail, you can use a class attribute: <pre><code class="html"><meta author="Joe Example"></code></pre> How To Add highlight.js Scripts to Your WordPress Site It’s also very easy to add the highlight.js scripts to your WordPress site. You’ll basically need to add the scripts to your site’s header. If you’re unfamiliar with editing site code for your WordPress theme files, you can use a plugin. We’ll be going the plugin route for this example. Log into your WordPress Dashboard Install the Insert Headers and Footers plugin From inside the plugin, add the above scripts to your header Well done! You now know how to add the highlight.js library to your HTML and WordPress sites. Be sure to leave a comment or question if you have any further difficulties. Share this Article CM Christopher Maiorana Content Writer II Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog. More Articles by Christopher Related Articles How To Create a PHP Redirect (301, 302, and Dynamic Redirect Examples) Connect to SFTP for Shared Hosting Accounts Using FileZilla FTP Basics for Dedicated Servers How to Install Jekyll and Launch a New Site How to Host AI-Prompt Generated Websites on Shared Hosting What is your default PHP.ini file? Getting Started Guide: FTP Configuring your site in WS_FTP Schedule Social Media Posts With Buffer FTP Error – 421 Too Many Connections
Hello Arek – apologies if you’re finding that this code is not working. We did review and it is working. Can you provide any information about you used it and explain how it’s not working. There are also other tutorials that use highlight.js that were not created by us – but use the same code. You can review this video to see if your code is matching: https://www.youtube.com/watch?v=y-0jqM9EeVM
Hello. I also don’t see the result of “highlight”. Here’s what I did. I added this to head using the clearfy plugin: hljs.initHighlightingOnLoad(); However, this does not work. Also, I tried to register scripts in functions.php. But there is no result. Any ideas? Thanks!
Sorry to hear that you’re running into trouble. Did you use the method involving adding the HTML directly, or the plugin. If so, what errors are you running into?