Coder Social home page Coder Social logo

blog's Introduction

个人博客

2017年6月11日更新

  • npm install hexo-generator-sitemap --save
  • npm install hexo-generator-baidu-sitemap --save
  • npm install hexo-html-minifier --save
  • npm install hexo-uglify --save
  • npm install hexo-clean-css --save pull node_modules folder in your project

2017年6月22日更新

  • 更新文件node_modules/hexo-generator-index/lib/generator.js 增加更新提示 在标题添加参数update_o,数值越大越靠前
    if(a.update_o && b.update_o) { // 两篇文章update_o都有定义
                if(a.update_o == b.update_o) return b.date - a.date; // 若update-o值一样则按照文章日期降序排
                else return b.update_o - a.update_o; // 否则按照update_o值降序排
            }
            else if(a.update_o && !b.update_o) { // 以下是只有一篇文章update_o有定义,那么将有update_o的排在前面(这里用异或操作居然不行233)
                return -1;
            }
            else if(!a.update_o && b.update_o) {
                return 1;
            }
  • 新增new文章功能,可在配置文件里面配置是否开启使用

2017年06月24日更新

  • 好像忘了安装订阅插件: npm install hexo-generator-feed --save

2017年10月23日更新

  • npm install hexo-deployer-git --save

2020年04月20日更新

  • 新增 Dockerfile 文件

blog's People

Contributors

joylau avatar failscholar avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.