Kramdown
属性付加#
> A nice blockquote
{: title="Blockquote title"}
こんちわclass
{: .class1 .class2}
こんばんわid
{: #id-nyan}
code block line numbers#
参考
method 1: use liquid tag#
{% highlight javascript linenos %}
function some(code) { /*goes here*/ }
let x = 21;
{% endhighlight %}
method 2: _config.yml#
kramdown:
highlighter: rouge
syntax_highlighter_opts:
block:
line_numbers: true
マークダウン;
```
function some(code) { /*goes here*/ }
let x = 21;
```
最終更新日: July 12, 2021 08:12:48