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.
{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
:
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
npm install hexo-excerpt --save
Configuration
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
npm install hexo-excerpt --save
Configuration
excerpt:
depth: 10
excerpt_excludes: []
more_excludes: []
hideWholePostExcerpts: true
Hexo Plugins and Personalization of this site