添加功能:自动打开文件编辑
rake new_post["file name"]
后自动打开博客文件
编辑Rakefile
文件,上面位置,添加定义:
editor = "gedit"
然后在new_post
命令后面添加:
if #{editor}
system "#{editor} #{filename}"
end
插入本地图片
将图片放到octopress/source/images/
下,然后在Markdown文件中可直接引用,用法:
前后行3个```显示代码,且有显示行数
c++
int main()
{
cout<<"hello world"<<endl;
};