It seems like syntax highlighting in Jekyll is limited to using liquid tags and pygments like so:
{% highlight bash %}
cd ~
{% endhighlight %}
But I've imported my existing blog from wordpress and it was written in markdown (using markdown code blocks) and …
I'm writing documents that should explain code in C# using Markdown.
I use the ```csharp to get csharp highlighting.
I sometimes want to highlight something specific in the code using bold or anything.
I know about <pre> etc... …
I want to include code in a markdown gist on github, and cannot work out how to do syntax highlighting.
github flavoured markdown - e.g.
```php
Class::function($param);
```
would highlight the syntax as php in an issue, for …