I'm converting markdown to HTML, and I want to include syntax-highlighted code.
I'm working from some markdown that contains syntax like:
~~~ {.c}
long factorial (int n)
{
long result = 1;
while (n > 1)
result *= n--;
return result;
}
~~~
but I don't know which syntax highlighting extension was used to process this syntax. What's a good extension?