Maison  >  Questions et réponses  >  le corps du texte

github - 如何让Jekyll支持Markdown的代码块格式

Jekyll写博文时,默认的代码块格式为:

{% highlight javascript %}
var a = 1;
var b = 2;
var c = a + b;
{% endhighlight %}

怎样配置才能让它支持Markdown的代码块格式,即:

"ruby
var a = 1;
var b = 2;
var c = a + b;
"

怪我咯怪我咯2759 Il y a quelques jours738

répondre à tous(3)je répondrai

  • 阿神

    阿神2017-04-24 09:14:56

    Configurer dans _config.yml

    markdown: kramdown
    
    kramdown:
      input: GFM

    répondre
    0
  • 大家讲道理

    大家讲道理2017-04-24 09:14:56

    Pour autant que je sache, le markdown est pris en charge par défaut
    Vous pouvez configurer markdown : kramdown dans _config.xml. Les analyseurs Markdown incluent kramdown, rdiscount, redcarpet, etc.

    répondre
    0
  • 阿神

    阿神2017-04-24 09:14:56

    Vous mettez trois backticks sur une ligne distincte

    répondre
    0
  • Annulerrépondre