薛定谔的风口猪

站在巨人的肩膀上学习,猪都能看得很远

修改octopress的时间格式

之前在_config.yml中增加了时间格式的设置,但一直没效果:

date_format: "%F %a" #2012-01-01

后来在StackOverflow上提了一个问题找到了答案:

  1. 安装Octopress Date format:

     gem install octopress-date-format
    
  2. _config.yml中加入:

     gems:
         - octopress-date-format
    
  3. 配置自定义格式。在_config.yml中配置时间的格式。默认的格式是:

     date_format: 'ordinal' # July 3rd, 2014
     time_format: '%-I:%M %P'   # 2:08 pm
    

我们可以改成:

    date_format: "%Y-%m-%d"  # e.g. 2014-07-03
    time_format: "%H:%M"     # 24 hour time

最后生成页面,大功告成:

    rake generate

更多详情可参看:https://github.com/octopress/date-format#configuration