在octopress中gist tab不能正确的插入gist代码
Contents
今天尝试用Octopress的gits tab插件来把gist插入到博客中,但是发现没有插入成功,调用rake generate
报如下的错误:
Gist replied with 404 for https://raw.github.com/gist/6700691/ClassHierarchy.cpp
我看了一下这个url,确实是404。于是就到了自己的gist页面看了看,发现应该用如下的url:https://gist.github.com/6700691#ClassHierarchy.cpp
但是其实这个url也会重定向到:
https://gist.github.com/fresky/6700691#ClassHierarchy.cpp
于是就把plugins\gist_tag.rb
的代码改了改,改成如下:
1 | def get_gist_url_for(gist, file) |
另外如果html返回302,不报异常:
1 | def get_gist_from_web(gist, file) |
这样gist就能正确的插入了,但是显示还有些问题,代码字体太大,和行数不能匹配,这个下次有机会在看看吧。显示效果可以参看C++程序在debug模式下遇到Run-Time Check Failure #0 - the Value of ESP Was Not Properly Saved Across a Function Call问题。
完整代码参加gist。