第一个hexo日志
安装 hexo 与编写博文123$ npm install hexo-cli -g$ cd blog$ npm install
新建一个文件, 然后发布到github上去
123456789101112131415161718192021222324$ hexo new "第一个hexo日志"INFO Created: ~/blog/source/_posts/第一个hexo日志.md$ vim ~/blog/source/_posts/第一个hexo日志.md$ npm install hexo-deployer-git --save$ vim _config.yml$ cat _config.yml...title: Larry_Eppes's Trivia Collection Sitekeywords: MATH, COMPUTERauthor: Larry Eppeslanguage: entimezone: 'Asia/Shanghai'...url: http://larryeppes.github.io...deploy: type: 'git' repo: https://github.com/larryeppes/larryeppes.github.io$ hexo serverINFO Start processingINFO Hexo is running at http://localhost:4000/. Press Ctrl+C to stop.$ hexo deploy --generate
博文信息提醒 note123{% note simple %}默認 提示块标签{% endnote %}
默認 提示块标签
123{% note default simple %}default 提示块标签{% endnote %}
default 提示块标签
123{% note primary simple %}primary 提示块标签{% endnote %}
primary 提示块标签
123{% note success ...