gpt4 book ai didi

markdown - Jekyll:使用 Markdown 语法突出显示代码片段

转载 作者:行者123 更新时间:2023-12-04 22:47:09 24 4
gpt4 key购买 nike

Jekyll docs声明代码突出显示是使用 Liquid 标签完成的,如下所示:

{% highlight ruby %}
def show
@widget = Widget(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @widget }
end
end
{% endhighlight %}

但是,我更愿意使用 Markdown 语法:
```ruby
def foo
puts 'foo'
end
```

我自己尝试了以下方法:
``` ini
; Disables the splash screen, if it has been compiled into the launcher.
RunLocally=true
```

然而,结果看起来并不像它应该的那样。

enter image description here

最佳答案

我必须将以下内容添加到我的 _config.yml 才能让我的 GitHub Pages 语法突出显示工作:

markdown: redcarpet
extensions: [fenced_code_blocks]

不知道为什么 fenced_code_blocks GitHub Pages 需要它,因为它应该在 Jekyll 中默认启用。

关于markdown - Jekyll:使用 Markdown 语法突出显示代码片段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20302655/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com