#给插入的链接加上名称 This is [an example](http://example.com/ "Title") inline link. [This link](http://example.net/) has no title attribute.
效果如下: This is an example inline link. This link has no title attribute. 注:如果想要在新页面中打开的话可以用html语言的a标签代替。 超链接名
个人网站常用命令
输入hexo new page "pagename",新建页面 输入hexo new post "article title",新建文章 编写完markdown文件后,文章写好之后,首先清除掉旧的数据:hexo clean 组合命令:hexo s -g 生成并本地预览 hexo d -g 生成并上传
Error
1.fatal: Could not read from remote repository. 原因:客户端与服务端未生成 ssh key or 客户端与服务端的ssh key不匹配 解决:重新生成一次ssh key,并配置好GitHub账户 1.1 生成新的ssh key
1 2 3 4 5 6 7 8 9 10
$ ssh-keygen -t rsa -C "zhangjinhuan954@163.com" !这里的邮箱地址,输入注册 Github 的邮箱地址 Generating public/private rsa key pair. Enter file in which to save the key(/c/Users/zhangjh/.ssh/id_rsa): !回车就好 之后会要求你设置密码 Enter passphrase (empty for no passphrase):<设置密码> Enter same passphrase again:<再次输入密码> !成功 Your identification has been saved in /c/Users/zhangjh/.ssh/id_rsa Your public key has been saved in /c/Users/zhangjh/.ssh/id_rsa.pub