I created a github page, using jekyll's minimal theme
I'm writing the pages in markdown. In my _config.yml file, I have the options :
markdown: kramdown
highlighter: rouge
kramdown:
input: GFM
syntax_highlighter: rouge
Somehow, the code is however not highlighted : https://sergedmi.github.io/pages/arccos
Note that the minimal theme does contain a css stylesheet that should highlight the code according to rouge markup.
The code is correctly highlighted in github : https://github.com/SergeDmi/SergeDmi.github.io/blob/master/pages/arccos.md
Any tip ?
I am confident that the fix is to change C++
to cpp
in your Markdown code blocks.
jekyll new cpp-test
_config.yml
to use rouge
for code block syntax highlighting.markdown: kramdown
highlighter: rouge
kramdown:
input: GFM
syntax_highlighter: rouge
jekyll s
in new cpp-test
directoryHere is what it looks like with C++
Here is what it looks like with cpp
Could it be that you need to use cpp
instead of C++
in your Markdown code blocks?
It looks like GitHub will syntax highlight your code blocks the same if you switch C++
to cpp
.
Rouge documents C++ as cpp
here https://github.com/rouge-ruby/rouge/blob/master/docs/Languages.md.