1.Markdown相关操作
- markdown中插入图片的图片路径
在source中建立文件夹imgs,然后路径直接写/imgs/path/name.jpg 就可以了![图片标题](图片地址)
- 插入链接
[链接标题](链接)
- 插入表格
1 | | Tables | Are | Cool | |
效果如下:
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
- hexo命令
hexo g ->生成页面
hexo d ->deploy到服务器
hexo d -g ->生成页面的同时部署到服务器