Hexo 标签插件演示 (2) -- 代码块

目录

这是 标签插件 代码块 演示.

普通的代码块

1
2
3

alert('Hello World!');

指定语言

1
2
3

[rectangle setX: 10 y: 10 width: 20 height: 20];

附加说明

Array.map
1
2
3

array.map(callback[, thisArg])

附加说明和网址

_.compactUnderscore.js
1
2
3
4

_.compact([0, 1, false, 2, '', 3]);
=> [1, 2, 3]

单词或短语

At the command prompt, type nano.

转义反引号

Use `code` in your Markdown file.

代码块

title1
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
<head>
<mate charset="utf-8" />
<title>Hello world!</title>
</head>
<body>
<h1>Hello world!</h1>
</body>
</html>