hexo_deploy某错误的解决办法

hexo deploy 出现该错误:
fatal: 无法访问 ‘https://*******.github.io/‘:GnuTLS recv error (-110): The TLS connection was non-properly terminated.

解决方法是:

1
2
3
$ sudo apt-get install gnutls-bin
$ git config --global http.sslVerify false
$ git config --global http.postBuffer 1048576000

继续deploy,成功上传。

hexo插图语法

图片引用示例:
正确的引用图片方式是使用下列的标签插件:
{% asset_img example.jpg This is an example image %}
{% asset_img 1.png This is an example image %}
通过这种方式,图片将会同时出现在文章和主页以及归档页中。

1.普通的代码块

1
2
3
{% codeblock %}
alert('Hello World!');
{% endcodeblock %}

输出为:

1
alert('Hello World!');

2.反引号代码块另一种形式的代码块,不同的是它使用三个反引号来包裹。
```代码块是这里```
输出为:

1
代码块是这里