I am using the maven site plugin and MarkDown pages for my project documentation
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.9.0</version>
</plugin>
But this plugin does not provide a feature for code syntax highlighting like :
```java
int a =
The code syntax highlighting is a standard on this forum or on GitHub for markdown pages.
How can I add this feature to my Maven project too?