After almost two years without updating this blog, I have changed the Markdown processor from Blackfriday to Goldmark, which includes an extension to highlight the code syntax according to the Alec Thomas' Chroma engine and styles.

For example, the following preformatted Markdown entry:

 ```c
 #include<stdio.h>
   
 void main() {
     printf("Hello, world!");
 }
 `` `

Will be rendered as:

#include<stdio.h>

void main() {
   printf("Hello, world!");
}

Also, few new changes have been added:

You can download this blog engine, with some examples, from my GitHub repository.