문제

I'm newbie on Jekyll and I would like to highlight some JSON code. It seems pygments has some lexer for JavaScript but not for JSON. How do I must proceed to hightlight JSON code?

Thanks.

도움이 되었습니까?

해결책

How about using JavaScript syntax highlighting? It should be highlighted as a JS object.

다른 팁

Since JSON is just JavaScript, you should be able to use the JavaScript highlighter in Pygments.

The following code snippet should do what you want.

{% highlight javascript %}
{
  "key": "something",
  "more": "does not",
  "again": "nothing"
}
{% endhighlight %}

I may not have gotten the exact Liquid syntax right but that should get you started.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top