I'm trying to set up syntax highlighting for my Jekyll page using redcarpet but I can't get it to work. If I try it out I always see that still rogue is being used. This is how my _config.yml
looks like:
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
highlighter: redcarpet
markdown: redcarpet
What am I doing wrong? I followed the guidelines both on the redcarped webpage and on the Jekyll webpage.
This is the fenced code block I have in my test markdown file test.md
```java
class Foo {
public void bar() {
}
}
```