hexo代码高亮

java代码

1
2
3
4
5
public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}

html代码

1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h3>Hello World!</h3>
</body>
</html>

c代码

1
2
3
4
5
6
#include<stdio.h>
int main()
{
printf("Hello World!");
return 0;
}

python代码

1
print("Hello World!")