使用 Hexo 写博客,
发现文章里面插入网络图片不能显示,
![标题](图片 URL)
<img src="" data-echo="https://s1.ax2x.com/2018/02/10/yHcS3.png" alt="yHcS3.png">
不知道是不是环境出了问题,
(node:8336) [DEP0061] DeprecationWarning: fs.SyncWriteStream is deprecated.
hexo: 3.6.0
hexo-cli: 1.1.0
os: Windows_NT 10.0.16299 win32 x64
http_parser: 2.7.0
node: 9.7.1
v8: 6.2.414.46-node.20
uv: 1.19.2
zlib: 1.2.11
ares: 1.13.0
modules: 59
nghttp2: 1.29.0
napi: 2
openssl: 1.0.2n
icu: 60.2
unicode: 10.0
cldr: 32.0.1
tz: 2017c
# Hexo Configuration
## Docs: https://hexo.io/docs/configuration.html
## Source: https://github.com/hexojs/hexo/
# Site
title: OHLIA
subtitle:
description: 懒癌+伪 Geak
author: OHLIA
language: zh-CN
timezone:
# URL
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
url: http://yoursite.com
root: /
permalink: :year/:month/:day/:title/
permalink_defaults:
# Directory
source_dir: source
public_dir: public
tag_dir: tags
archive_dir: archives
category_dir: categories
code_dir: downloads/code
i18n_dir: :lang
skip_render:
# Writing
new_post_name: :title.md # File name of new posts
default_layout: post
titlecase: false # Transform title into titlecase
external_link: true # Open external links in new tab
filename_case: 0
render_drafts: false
post_asset_folder: false
relative_link: false
future: true
highlight:
enable: true
line_number: true
auto_detect: false
tab_replace:
# Home page setting
# path: Root path for your blogs index page. (default = '')
# per_page: Posts displayed per page. (0 = disable pagination)
# order_by: Posts order. (Order by date descending by default)
index_generator:
path: ''
per_page: 10
order_by: -date
# Category & Tag
default_category: uncategorized
category_map:
tag_map:
# Date / Time format
## Hexo uses Moment.js to parse and display date
## You can customize the date format as defined in
## http://momentjs.com/docs/#/displaying/format/
date_format: YYYY-MM-DD
time_format: HH:mm:ss
# Pagination
## Set per_page to 0 to disable pagination
per_page: 10
pagination_dir: page
# Extensions
## Plugins: https://hexo.io/plugins/
## Themes: https://hexo.io/themes/
theme: yelee
#RSS 订阅插件
plugin:
- hexo-generator-feed
#RSS 插件配置
feed:
type: rss2
path: atom.xml
limit: 20
hub:
content: true
#文章加密
## hexo-blog-encrypt
#Security
encrypt:
enable: true
default_abstract: 这是篇受保护的文章!
default_message: 请输入文章密码!
#default_template: # 文章详情页
#后台管理
#hexo-admin
#admin:
#username: OHLIA
#password_hash: 0477a36f2fbe7f7e3a94e96b572e4991
#secret: NoOneCanLogin
# Deployment
## Docs: https://hexo.io/docs/deployment.html
deploy:
type: git
repo: [email protected]:OHLIA/OHLIA.github.io.git
branch: master
1
alvinbone88 2018-03-06 12:11:42 +08:00 1
卸载 hexo-renderer-marked-lazy
|
2
Cipool 2018-03-06 12:18:40 +08:00 via Android
把你的图片链接改成源图片的直链
https://s1.ax2x.com/2018/02/08/v8vZr.jpg |
3
vfiles OP |