# markdown

# 常用语法

markdown常用语法 (opens new window)

# 搜索

内置搜索只会为页面的h2和h3标题建立索引

# 引入js文件

换行:两个空格

引入js文件的代码块
<<< @/docs/.vuepress/public/js/main.js

function init() {
	// console.log('123');
	//如果你要操作界面元素的时候,由于该函数在head部分,可能会出现界面未加载完成,而你要读取界面节点的情况
	//我们做一个延时加载

	
}
//延时加载
setTimeout("init()",500);
setInterval(function() {   
	var time = new Date();   // 程序计时的月从0开始取值后+1   
	var hour = time.getHours() < 10 ? "0" + time.getHours() : time.getHours();
	var minute = time.getMinutes() < 10 ? "0" + time.getMinutes() : time.getMinutes();
	var second = time.getSeconds() < 10 ? "0" + time.getSeconds() : time.getSeconds();
	var t = hour + ":" + minute + ":" + second + ":" + time.getMilliseconds();
}, 100); 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

# 提示

TIP

这是一个提示

WARNING

这是一个警告

DANGER

这是一个危险警告

DETAILS

这是一个详情块,在 IE / Edge 中不生效

你也可以自定义块中的标题:

STOP

危险区域,禁止通行

点击查看代码
console.log('你好,VuePress!')
1

# 调整md文件的表格宽度

<style>
table th:nth-of-type(1) {
	width: 1000px;
}

table th:nth-of-type(2) {
	width: 80px;
}
</style>
1
2
3
4
5
6
7
8
9