0%

hexo_note

This blog is established with hexo.

follow the guidline by huanhao

The official hexo docs are the best book you need: Hexo

you can write a new blog with typora. Begin with front matter:

1
2
3
4
5
6
7
8
---
title: hexo_note
date: 2024-07-20
tags: hexo
---

This blog is established with hexo
....

use valine comments system supported by leancloud, config your theme _config.yml file.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Valine
# For more information: https://valine.js.org, https://github.com/xCss/Valine
valine:
enable: true
appid: xxxxxxx # Your leancloud application appid
appkey: xxxxxx # Your leancloud application appkey
serverURLs: https://xxxxxxxx.api.lncldglobal.com # When the custom domain name is enabled, fill it in here (it will be detected automatically by default, no need to fill in)
notify: False # Mail notifier
verify: false # Verification code
placeholder: Just go go # Comment box placeholder
avatar: mm # Gravatar style
guest_info: nick,mail,link # Custom comment header
pageSize: 10 # Pagination size
language: # Language, available values: en, zh-cn
visitor: false # Article reading statistic
comment_count: true # If false, comment count will only be displayed in post page, not in home page
recordIP: false # Whether to record the commenter IP
#post_meta_order: 0

if you don’t want comments in certain pages, set comments as False like below

1
2
3
4
5
6
7
8
---
title: hexo_note
date: 2024-07-20
comments: False
---

This blog is established with hexo
....