How to Highlight Pre CodeBox in Blogger using highlight.js

How to Highlight Pre CodeBox in Blogger using highlight.js
Hello Friends, Today We will be talking about how to use Highlight.js in our Blogger WebSite to make a Good Looking Highlight Code. This will look good when you use pre codes and help you to make attractive design of your Website. What is Highlight.js The bare minimum for using highlight.js on a web page is linking to the library along with one of the themes.. This will find and highlight code inside of <pre><code> tags; it tries to detect the language automatically. If automatic detection doesn’t work for you, or you simply prefer to be explicit, you can specify the language manually in the using the class attribute: <pre><code class="language-html">...</code></pre> Plaintext Code Blocks To apply the Highlight.js styling to plaintext without actually highlighting it, use the plaintext language: <pre><code class="language-plaintext">...</code></pre> Ignoring a Code Block To skip highlighting of a code block completel…