I want to highlight some code in Jeckyll. With liquid tags it works and with kramdown it doesn't:
# This is highlighted
{% highlight C %}
void foo(){
}
{% endhighlight %}
# These aren't
~~~ C
void foo(){
}
~~~
``` C
void foo(){
}
```
The relevant parts of my _config.yml:
markdown: kramdown
kramdown:
input: GFM
Does Jekyll not support markdown code blocks? If I stick this in github pages, will it work there?