Hexo Hueman Tutorial

1.Starting Hexo Blog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
username@LAPTOP-D1EUIRLS MINGW64 ~/Desktop
$ hexo init your_blog_folder

username@LAPTOP-D1EUIRLS MINGW64 ~/Desktop
$ cd your_blog_folder/

username@LAPTOP-D1EUIRLS MINGW64 ~/Desktop/your_blog_folder
$ echo "# your_blog_folder" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/your_id/your_blog_folder.git
git push -u origin master

username@LAPTOP-D1EUIRLS MINGW64 ~/Desktop/your_blog_folder (master)
$ git add .

username@LAPTOP-D1EUIRLS MINGW64 ~/Desktop/your_blog_folder (master)
$ git commit -m "updated"

username@LAPTOP-D1EUIRLS MINGW64 ~/Desktop/your_blog_folder (master)
$ git push

username@LAPTOP-D1EUIRLS MINGW64 ~/Desktop/your_blog_folder (master)
$ code .
2.Applying Hueman Theme
3.Basic Hexo Tutorial
4.Hexo Tag Plugins
5.Add Math Formula(without changing from Notion)
  1. Creat File name mathjax.ejs on themes/hueman/layout folder
1
2
3
4
5
6
7
8
9
10
11
12
MathJax.Hub.Config({
jax: ["input/TeX", "output/HTML-CSS"], # mathjax
tex2jax: {
inlineMath: [ ['$', '$'] ],
displayMath: [ ['$$', '$$']],
processEscapes: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
},
messageStyle: "none",
"HTML-CSS": { preferredFont: "TeX", availableFonts: ["STIX","TeX"] }
});

  1. Check #Plugins in themes/hueman/_config.yml file and change mathjax: false to true
  2. Add mathjax:true at the header when you post
6.Font Change
7.Deleting Posts
8.Error in Hueman Theme

To Be Continued..

Share