Hexo Plugins and Personalization of this site

Hexo Plugins and Personalization of this site

Here are all the plugins and niche settings that personalize this blog and the Icarus theme.

Remove Uppercase Details

The Uppercase characters overflowed the page and affects the aesthetic.

Find the css tag that contains the keyword Uppercase and remove it.

article.jsx
1
{page.layout !== 'page' ? <div class="article-meta is-size-7 is-uppercase level is-mobile">}

Better Sans Font

In _config.icarus.yml, find the following section providers:

_config.icarus.yml
1
2
3
4
5
6
7
providers:
# Name or URL template of the JavaScript and/or stylesheet CDN provider
cdn: jsdelivr
# Name or URL template of the webfont CDN provider
fontcdn: https://fonts.googleapis.com/css2?family=Noto+Sans+HK:wght@100..900&display=swap
# Name or URL of the fontawesome icon font CDN provider
iconcdn: fontawesome

Choose your favorite font in Google Fonts, and paste the url of the font to fontcdn

Atom or RSS feed – hexo-generator-feed

It is used for generating Atom 1.0 feed. Check Here

Installation

terminal
1
npm install hexo-excerpt --save

Configuration

_config.icarus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
feed:
enable: true
type: atom
path: atom.xml
limit: 20
hub:
content:
content_limit: 140
content_limit_delim: ' '
order_by: -date
icon: /img/avatar.png
autodiscovery: true
template:

Automatic excerpt generator – hexo-excerpt

Installation

terminal
1
npm install hexo-excerpt --save

Configuration

_config.icarus.yml
1
2
3
4
5
excerpt:
depth: 10
excerpt_excludes: []
more_excludes: []
hideWholePostExcerpts: true

Hexo Plugins and Personalization of this site

https://greenmeeple.github.io/site/personalize/

Author

Alex Li

Posted on

2025-04-03

Updated on

2025-05-14

Licensed under

Comments

Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×