↧
Answer by Jeff Puckett for Php code highlight in Jekyll kramdown don't work
As of Aug 8, 2016, From https://github.com/jekyll/jekyll/issues/1633#issuecomment-238383509We don't support Pygments anymore. We use Rouge.The new syntax is as...
View ArticleAnswer by David Jacquel for Php code highlight in Jekyll kramdown don't work
If you want to forget the php opening tag at the beginning of you code block, you have to set the Pygments startinline parameter to true.{% highlight php startinline=true %}See Pygments documentation
View ArticlePhp code highlight in Jekyll kramdown don't work
I'm using Jekyll with kramdown and pygments, it work fine for javascript or python code but When I create php like:{% highlight php %}header('Content-Type: application/json');echo...
View Article