g

丘海东

读书写字 热爱生活 ⌚️📖️🖋️🏀️🚲️🚉️🎼️🍵️🏞️📷️

Octopress2.0 自动打开文件 插入本地图片 程序

教程

添加功能:自动打开文件编辑

rake new_post["file name"] 后自动打开博客文件
编辑Rakefile文件,上面位置,添加定义:

1
editor = "gedit"

然后在new_post命令后面添加:

1
2
3
if #{editor}
  system "#{editor} #{filename}"
end

插入本地图片

将图片放到octopress/source/images/下,然后在Markdown文件中可直接引用,用法:

语法冲突,不能显示正确代码,看图片

kobi t-mac

前后行3个```显示代码,且有显示行数

1
2
3
4
5
c++
int main()
{
  cout<<"hello world"<<endl;
};