0

I'm new to GitBook and I am trying to make the syntax highlight work as expected for some JavaScript lines of code.


some javascript lines without colour


I noticed that there is a plugin store in the editor. I enabled a plugin called highlight but it's not doing it's job.

I searched in the documentation for this, but I couldn't find anything related.

This book has the syntax highlighting enabled and working:
https://gitbookio.gitbooks.io/javascript/content/basics/comments.html

book.json

{
    "plugins": [
        "highlight"
    ],
    "pluginsConfig": {}
}

How can I do the same?

4

2 に答える 2

2

私は調査を行い、これを行う方法を見つけました。

という別のプラグインを試しAceました。このプラグインは機能しました。ここに私のbook.jsonがあります

{
    "plugins": ["ace"],
    "pluginsConfig": {
    }
}

そして、JavaScript の基本的な構文でコード ブロックをネストする必要がありました。

入力。

## The Arrow function
Now this should be syntax highlighted
In ES5

{%ace edit=false, lang='javascript', check=false, theme="tomorrow" %}
var myFunction = function(num) {  
    return num + num;
};
{%endace%}

In ES6

{%ace edit=false, lang='javascript', check=false, theme="tomorrow" %}
let myFunction = (num) => num + num;
{%endace%}

出力。

強調表示されたコード

これはうまく機能しています!

于 2016-06-26T01:53:21.213 に答える