Home  >  Article  >  Web Front-end  >  Highlight code using highlight.js

Highlight code using highlight.js

巴扎黑
巴扎黑Original
2017-08-21 10:39:542379browse

This article mainly introduces js to use highlight.js to highlight your code. It is of great practical value. Friends who need it can refer to it.

When browsing other people’s blogs, you see other people’s codes. The example uses highlighted syntax. Whether it is java, js, php, etc., the keywords will be automatically highlighted.

So I wrote a blog a few days ago. When I encountered code, I naturally thought of how beautiful other people’s websites are, blah blah blah.

The formal tinkering began.

Go to other websites to check before tinkering. Here is the effect of pasting the simplified book:

The keywords, method names, and strings are all in different colors. Although the code is not highlighted very well, Not bad. So I went to look at the document and found this:


<pre class="hljs javascript"><code class="javascript"><span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">getPersonInfo</span>(<span class="hljs-params">name,age,sex</span>) </span>{
  <span class="hljs-built_in">console</span>.log(name+age+sex);
}
<span class="hljs-comment">//要是我这样传,name就成了18,age成了王二了。</span>
getPersonInfo(<span class="hljs-string">&#39;18&#39;</span>,<span class="hljs-string">&#39;王二&#39;</span>,<span class="hljs-string">&#39;男&#39;</span>);
<span class="hljs-comment">//所以可以这样写</span>
<span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">getPersonInfo</span>(<span class="hljs-params">args</span>)</span>{
  <span class="hljs-built_in">console</span>.log(args.name+args.age+args.sex);
}
getPersonInfo({name:<span class="hljs-string">&#39;王二&#39;</span>,age<span class="hljs-string">&#39;18&#39;</span>,sex:<span class="hljs-string">&#39;男&#39;</span>});</code>

hljs? ? This is definitely it. So we found our protagonist: highlight.js.

highlight.js official website

The usage of highlightjs can be directly viewed on the official website

Here I mainly write down what pitfalls I stepped on during use, and the final results Solution.

1. I can’t eat hot tofu in a hurry. The most difficult thing is the beginning.

According to the doc on the official website, you only need three lines of code to use it. It is very convenient. You can I wrote a small demo and tested it. Still very effective.


<link href="http://cdn.bootcss.com/highlight.js/8.0/styles/monokai_sublime.min.css" rel="external nofollow" rel="stylesheet"> 
<script src="http://cdn.bootcss.com/highlight.js/8.0/highlight.min.js"></script> 
<script >hljs.initHighlightingOnLoad();</script>

The cdn provided by bootstarp is used here. You can access the cdn directly through the above connection and select the required version. It's that simple.

This color scheme is not very good-looking either. If you want good-looking colors, you can refer directly to the official website. https://highlightjs.org/static/demo/

2. If it is easy to use, it must be applied in actual development.

I am very happy that it can be applied so easily. , so it was applied to the project.

As a result, I encountered *trouble....

The project uses require.js to load js, and the entire application uses the angular framework.

If you write it directly like this, it obviously does not comply with the specification, so you will change the code and use require.js to load highlight.js.

Add highlight path configuration in require.config


&#39;highlight&#39;:&#39;http://cdn.bootcss.com/highlight.js/8.0/highlight.min&#39;,

Execute hljs.initHighlightingOnLoad();

## in the callback function of require


#

require(loadList, function ($, angular) {
    $(function () {
      angular.bootstrap(document, [&#39;blogApp&#39;]);
    });
    hljs.initHighlightingOnLoad();
  });

css can still be loaded through link, or you can use less's @import to load it. Because the project uses less, I chose @import


@import "/lib/highlight/styles/tomorrow-night-eighties.css";

Then write a code test on the html page:


<body>
    <p ng-include="&#39;template/header.html&#39;"></p>
    <p>
      <pre class="brush:php;toolbar:false">
        <code class="lang-javascript">
    function init(){
      $scope.req.getArticle();
      $(&#39;pre code&#39;).each(function(i, block) {
        hljs.highlightBlock(block);
      });
    }
        </code>
      

cloud blog by@ermu

Then open the browser and take a look:

Very perfect.

But when using ng-bind-html to display the document returned from the background:

The code is not highlighted at all. Think about it carefully,



hljs.initHighlightingOnLoad();

Isn’t it the rendering that is executed during onload? In other words, any changes to the document after that will not be executed. So obviously this cannot highlight the code of the document retrieved from the interface.

Googled it and found something called angular-highlightjs. I tried to use it, but it kept reporting errors and there was no documentation on the official website.

Fortunately, the code was hosted on github, so I went there After looking at it, I found that the instructions for use are as short as the official website. No one asked this question on the issues, so I asked, hoping someone can answer: Question address

I think highlight.js must provide the corresponding one. The method can be executed once after the loading is completed, but unfortunately the api document is in English and it is difficult to read, so I decided to think of other methods.

The final solution to the problem is that the interface returns HTML compiled using highlight.js. Because the backend uses node, I searched on the cnode forum and found that marked has solved this problem.

You only need to add the highlight item in the marked configuration (npm install highlight.js first):


var marked = require(&#39;marked&#39;);
var highlight = require(&#39;highlight.js&#39;);
marked.setOptions({
  renderer: new marked.Renderer(),
  gfm: true,
  tables: true,
  breaks: false,
  pedantic: false,
  sanitize: false,
  smartLists: true,
  smartypants: false,
  highlight: function (code) {
  return highlight.highlightAuto(code).value;
 }
});

The returned document has been added The corresponding class.


<pre class="brush:php;toolbar:false">
<code class="lang-js">
<span class="hljs-keyword">var</span> math = (<span class="hljs-string">&#39;math&#39;</span>) ;
<span class="hljs-keyword">export</span>.increment = <span class="hljs-function"><span class="hljs-keyword">function</span>(<span class="hljs-params">val</span>) </span>{
  <span class="hljs-keyword">return</span> math.add(val,<span class="hljs-number">1</span>)
}
</code>

The above is the detailed content of Highlight code using highlight.js. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn