シンタックスハイラトしたい部分をpreタグとcodeタグで囲って、codeタグのclass属性にコードの種類を指定する。
class="shell"とした場合
$ cat hello-world.sh
$ cat hello-world.c
class="sh"とした場合
#!/bin/sh
set -eux;
echo "hello world!"
class="c"とした場合
#include <stdio.h>
int main ()
{
printf("hello world!\n");
return 0;
}