Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

I found that the default theme of Hexo is not very appealing, so I wanted to find a bright one and tried using a plugin.

The plugin can be found here. Installation is quite simple; just run npm i -S hexo-prism-plugin. Then, open the blog’s configuration file _config.yml, disable the built-in highlighting, and add the settings for this plugin.

1
2
3
4
5
6
7
highlight:
enable: false
prism_plugin:
mode: 'preprocess' # realtime/preprocess
theme: 'default'
line_number: false # default false
custom_css: 'path/to/your/custom.css' # optional

After that, update as usual. This plugin supports multiple highlighting modes and custom CSS. The supported languages are listed on the above link.
```

Comments

Please leave your comments here