Jekyll way to explore https:https://cdn.v2ex.com/navatar/1068/c6e4/410_normal.png?m=1633248911 https:https://cdn.v2ex.com/navatar/1068/c6e4/410_large.png?m=1633248911 2023-01-12T11:51:59Z Copyright © 2010-2018, V2EX Installing Jekyll on macOS Ventura tag:www.v2ex.com,2023-01-04:/t/906648 2023-01-04T23:12:41Z 2023-01-12T11:51:59Z Livid member/Livid I have been following
this tutorial by Sean Boots on how to install Jekyll on previous versions of macOS. It worked really well and provided a smooth installation process. However, since the latest version of macOS (Ventura) still ships with Ruby 2.6, some Gems started to complain about that. So, I found a new method that uses the excellent rbenv project to install a newer version of Ruby.

1. Install rbenv with Homebrew.

brew install rbenv ruby-build 

Add this to ~/.zshrc if you are using zsh:

eval "$(rbenv init - zsh)" 

2. Change to your Jekyll blog's work directory, and install a newer version of Ruby:

rbenv install 3.1.3 

3. Activate it for your Jekyll:

rbenv local 3.1.3 

Check if you have got the desired version:

ruby -v 

It should output something like this:

ruby 3.1.3p185 (2022-11-24 revision 1a6b16756e) [arm64-darwin22] 

If you see an older version like this:

ruby 2.6.10p210 (2022-04-12 revision 67958) [universal.arm64e-darwin22] 

Check previous steps.

4. Install the two essential gems:

gem install bundler jekyll 

5. Set bundle to use a local folder inside your website:

bundle config set --local path 'vendor/bundle' 

6. Install the rest of gems:

bundle install 

If you encounter any issues with any Gems, try deleting the Gemfile.lock and running the command again.

7. Exclude the vendor folder in your Jekyll config file, for example:

exclude: - .ruby-gemset - .ruby-version - Gemfile - Gemfile.lock - Makefile - README.md - vendor/ 

You will also need to add the following lines into .gitignore:

vendor/ .bundle/ 

8. Your Jekyll installation is now set up and ready to use. To launch a live preview, try running the following command:

bundle exec jekyll serve --watch 

I hope you are enjoying the ride. However, if you found the process complex and difficult, you are not alone. That is also part of the reason I started working on Planetable.xyz, a static site generator with a graphical interface and a built-in IPFS node. With the Planet app, you don't need any command line knowledge to start blogging and self-hosting on your Mac. You don't even need an account or cloud because Planet has a built-in IPFS node that can help you publish your blog directly to the Internet as an InterPlanetary Name. You can later link that InterPlanetary Name (IPNS) to your Ethereum Name (.eth name). Since both IPFS and ENS are not controlled by any single entity, you can publish your blog in a fully decentralized way.

]]> 在 macOS Big Sur / Monterey 上适用的 Jekyll 安装过程 tag:www.v2ex.com,2022-10-05:/t/884683 2022-10-05T01:00:44Z 2022-10-05T02:00:44Z Livid member/Livid https://sboots.ca/2021/07/20/installing-jekyll-locally-on-macos-big-sur/

]]>
这可能是 2022 年最方便快捷的搭建个人博客的教程了--github pages+Jekyll 三步搞定无需命令行无需配环境 tag:www.v2ex.com,2022-04-10:/t/846161 2022-04-10T16:09:04Z 2022-04-10T16:09:04Z wasd6267016 member/wasd6267016 t/845991

之前的帖子讨论过,大家给了很多建议

今天我实践之后找到了一个很好的方法,省时省力,不需要踩各种坑,以后维护也方便,真正能做到“写博客”,不会写代码的人也能轻易做到,所以分享一下


核心优势:


1 搭建简单 只需要三步 不依赖任何本地环境 不需要用到一行命令 只要能网页访问 github 就行

2 发文章方便 可以用直接 github 网页端提交 md 文章,不需要保存工程文件,随意切换设备

下面是搭建和发文章教程

前置条件:有 github 账号,能用浏览器访问 github

核心步骤 1:找到喜欢的 Jekyll 模板工程,fork 到自己仓库,修改项目名为 yourname.github.io
以比较火热的 next 主题为例:
项目地址 https://github.com/Simpleyyt/jekyll-theme-next
demo 预览地址 https://simpleyyt.com/jekyll-theme-next/
在项目页面右上角 Fork ,然后到自己仓库里就可以把这个 Fork 来的项目改名为 yourname.github.io(yourname 是你 github 的名字)

-- 到这一步你的博客已经有了 只是名字和文章都还是别人的 可以通过 yourname.github.io 直接访问,不过可能要等几分钟


核心步骤 2:在 Fork 来的项目里直接点击_config.yml 文件在线编辑

这个文件是博客的配置文件,可以修改名字,头像什么的 具体参数要看每个模板的教程
-- 到这一步你的博客打开已经是显示你的名字了

核心步骤 3:在 Fork 来的项目里,点进去_posts 文件夹

里面会看到一些别人的 md 文件,每个文件就是一篇文章,在线删掉这些文件(最好留一个,不然整个文件夹都没了)
然后上传自己的 md 文件,要注意 Jekyll 的 md 文件格式要以 yyyy-mm-dd-开头,比如 2021-12-24-第一篇文章.md

到这就完全搞定了,顺利的话 yourname.github.io 已经是你的博客了

发文章也很简单,就是在_posts 目录下上传符合命名格式的 md 文件。

写文章的方式就丰俭由人了,你可以本地 md 编辑器写之后上传,也可以 prose 这个网站在线写,也可以用 github 的在线工程写,甚至可以直接再网页端项目里新增文件写

觉得这个方法好的话推荐给别人吧!再也不要因为配环境和设备妨碍“写博客”这件事本身了 ]]>
想把博客从 hexo 迁移到 Jekyll 了 tag:www.v2ex.com,2022-04-09:/t/845991 2022-04-09T19:09:30Z 2022-04-10T17:49:53Z wasd6267016 member/wasd6267016
1 写 hexo 步骤太繁琐了 每次都要写好 md 然后复制到家里的电脑,开着代理,git push ,步骤太多已经让人懒得提交到博客了 甚至有时候写完就放本地了

2 hexo 的环境难跨设备,这次重装系统,老的环境没了,虽然文章内容 md 还在,但是已经没法提交新文章了(工程环境没了,要从头搭建)

3 据说 Jekyll 能达到和 hexo 一样的效果,但是绝对的优势是可以只提交 md ,剩下的事在线生成。也就是说我可以直接在 github 网页端提交 md 文件就能实现文章的更新。我第一次部署好之后,甚至工程环境就可以放心大胆的丢掉了,毕竟平时不需要修改什么,以后只改 md 文件

4 主题也不少看了几个挺满意的

5 还有什么坑是我没考虑到的吗? ]]>
一种让 Jekyll 使用 WebP 图片的实现方案 tag:www.v2ex.com,2021-10-03:/t/805761 2021-10-03T08:14:14Z 2021-10-03T08:14:14Z Livid member/Livid https://www.aleksandrhovhannisyan.com/blog/improve-page-load-speed-in-jekyll-using-the-webp-image-format/ ]]> 学习 Jekyll 日志贴 tag:www.v2ex.com,2019-11-23:/t/622427 2019-11-23T07:52:10Z 2019-11-23T08:30:57Z FRHong member/FRHong 多年 WP 用户,最近处于兴趣,试试看 Jekyll,主要原因是静态,而且希望可以少折腾一点。尽管如此,学习过程中还是有一些问题,希望开帖,自己记录的同事,也能请教各位 V 有。

2019-Nov-23

  1. 这篇教程写得不错。这里收藏一下。

  2. [模版问题] - 似乎在 __config.yml 这个文件里可以直接用在 Github 上的主题。比如输入 remote_theme: aspirethemes/type 就可以用到 “Type” 这个主题。

这里提问一个问题。

[例子]

]]>
自荐一款自己写的 Jekyll 主题 tag:www.v2ex.com,2019-09-22:/t/603075 2019-09-22T08:18:32Z 2019-09-30T13:34:09Z TMaize member/TMaize 项目地址

主题预览

最近切换留言板,顺便优化了下主题,有喜欢的可以用一下

特色:简洁纯净,主题资源请求<20KB,秒开页面,支持自适应,支持全文检索,插件可配置

]]>
分享一个不错的 jekyll 主题集合站 tag:www.v2ex.com,2019-04-29:/t/559866 2019-04-29T11:01:50Z 2019-05-29T02:22:37Z heshanfu member/heshanfu 分享一个不错的 jekyll 主题集合站 https://jekyllthemes.dev

]]>
Jekyll 博客换行问题 tag:www.v2ex.com,2019-04-21:/t/557330 2019-04-21T15:22:52Z 2019-04-26T13:45:22Z Planarians member/Planarians 自己看着教程搭了一个 Jekyll 博客
把在其他软件写好的 Markdown 文章复制到 vscode 中却发现所有的换行都消失了 生成 blog 之后也是一样没有


发现在 vscode 的设置里有两项叫 Markdown preview:Breaks 和 Markdown-preview-enhanced:Break On Single New Loine
打开了之后 vscode 预览界面中的确换行了
但是实际生成的 blog 中还是没有换行
要每一行自己加一个<br>或者两个空格也太麻烦了呀

请问这到底要更改什么设置才能解决呢(T▽T)

]]>
一个新的 Jekyll 主题了解一下? tag:www.v2ex.com,2018-08-19:/t/481254 2018-08-19T14:16:50Z 2018-08-19T21:04:25Z showzeng member/showzeng 一个新的 Jekyll 主题 Minimalism 了解一下?

简介:一款为极简主义者打造的极简主题。

]]>
docs.docker.com 用的 jekyll 主题能剥出来用吗? tag:www.v2ex.com,2017-03-19:/t/348661 2017-03-19T12:12:23Z 2017-03-19T12:09:23Z unicorn70 member/unicorn70 Jekyll x Liquid: 文章置顶功能的实现 tag:www.v2ex.com,2017-02-05:/t/338243 2017-02-05T07:55:34Z 2017-02-05T03:55:34Z szhshp member/szhshp 今天突然闲的蛋疼想把一些文章置顶, 于是就研究了一下如何实现, 还顺便把功能塞到了前段时间发布的- Jekyll 主题 里面

两个方案:

Server 端实现

其实很简单, 一开始以为无法对 Post 进行操作, 后来发现可以从 post 的 header 里面进行参数设置

layout: post title: 《 10101 》 EP0 :我太受欢迎了该怎么办 category : Comic tags : [Comic, 10101] stickie: true 

然后 liquid 进行判断

{* for post in site.posts *} {* if post.stickie != true *} {* continue *} {* endif *} <div>置顶文章细节</div> {* endfor *} {* for post in site.posts *} {* if post.stickie == true *} {* continue *} {* endif *} <div>普通文章细节</div> {* endfor *} 

当然这个可以进行多种扩展, 比如只输出特定类别的文章等等,这里就是个只输出带有 comic 这个 tag 的 post

{% for post in site.posts %} {% assign isComic = 0 %} {% for tag in post.tags %} {% if tag == comic %} {% assign isComic = 1 %} {% endif %} {% endfor %} {% if isComic == 0 %} {% continue %} {% endif %} {% endfor %} 

Client 端实现

我太懒了没去研究 o( ̄▽ ̄)o

用 JQuery.sort()给 DOM 排序再渲染一下即可

这个排序还要额外对时间进行比较 //果然懒一点是没错的 o( ̄▽ ̄)o

演示页面

szhshp 的第三边境研究所

参考

]]>
分享一套原创 Jekyll 主题: Project Gaia tag:www.v2ex.com,2017-01-11:/t/333948 2017-01-11T11:45:07Z 2017-01-11T07:45:07Z szhshp member/szhshp

Repo Link: JekyllTheme-ProjectGaia

See demo page here: Demo Page

]]>
jekyll 天坑啊. 一篇文章 5.6M .. 650 篇文章.. 就是 3.79G 啊 . 难怪本地生成用了 46 分钟啊.. tag:www.v2ex.com,2017-01-05:/t/332447 2017-01-05T08:31:48Z 2017-01-05T19:37:46Z xx0219 member/xx0219 伤心欲绝... 还亏我个初学前端的给你写主题...

测试了下
文件数量小(15 篇)的时候 生成很快 2s .. 每篇文章也就 50kb 文件数量大 ( 650 篇) .. 生成花了 46 分钟啊 每篇文章有... 5.6MB 啊

这算 Bug 么..... 还是我代码写的太烂了....

]]>
大家有没有遇到过本地预览经常忽略新建的文档? tag:www.v2ex.com,2016-11-08:/t/318965 2016-11-08T05:02:00Z 2016-11-08T04:59:00Z yocson member/yocson 而且用不同的编辑器保存结果不一样,有的可以预览,有的不能预览。 ]]> jekyll serve 一直过不了关 tag:www.v2ex.com,2016-11-05:/t/318193 2016-11-05T00:17:33Z 2016-11-11T08:21:27Z sepwolves member/sepwolves 为了在 github pages 上建一个自己的博客。 ruby 的安装, gem 的安装,甚至包括 jekyll 的安装都很顺利。 但是到了 jekyll serve 这个环节就出问题了。 怎么都过不去。

]]>
jekyll 怎么添加一个主题 skinny-bones-jekyll? tag:www.v2ex.com,2016-10-25:/t/315395 2016-10-25T10:20:22Z 2016-10-25T11:10:20Z jimi member/jimi
If you want to use Skinny Bones with an existing Jekyll site follow these steps:

1.Download Skinny Bones and unzip.
2.Rename skinny-bones-jekyll-master to something meaningful ie: new-site
3.Run bundle install to install all Jekyll and all dependencies.
4.Add all of your existing posts, pages, and any other content you want to move over.
5.Update YAML front matter blocks to match names used by Skinny Bones. Full details below.
6.Update config.yml, add navigation links. Full details below.

从 4 开始,意思是说把项目里面的文件都移过来吗?
我对比了下 jekyll 和 skinny-bones-jekyll 目录下有很多相同的文件夹目录和文件,所以就不知道怎么 把 skinny-bones-jekyll 加到 jekyll 中了。 ]]>
请教: jekyl 博客上传设置问题 tag:www.v2ex.com,2016-07-07:/t/290871 2016-07-07T06:24:50Z 2016-07-07T07:35:39Z JavaNoob member/JavaNoob 看了阮一峰大大的 jekyll 的博客文章和参考这篇文章 http://pizida.com/technology/2016/03/03/use-jekyll-create-blog-on-github/#github-pages 发现 gh-pages 有点懵逼了 不知道上传到哪个分支节点 电脑说已经存在 http://ww4.sinaimg.cn/large/8e357079jw1f5lbscwtzwj20j604340q.jpg 各位给点意见吧 从域名到 disqus 我都折腾好久了 谢谢

]]>
jekyll 主题汇总站 tag:www.v2ex.com,2016-06-06:/t/283828 2016-06-06T05:10:53Z 2016-10-19T00:05:02Z nuc093 member/nuc093 http://jekyllthemes.io/ ]]> 开始改用新的主题! tag:www.v2ex.com,2016-06-05:/t/283646 2016-06-05T08:07:14Z 2016-06-05T08:21:50Z nuc093 member/nuc093 原来的版本:
http://qinkun1234.github.io/tools/
新的版本:
http://qinkun1234.github.io/b/mydoc_tools/
官方的说明在这
https://github.com/tomjohnson1492/tomjohnson1492.github.io

用来写说明文档用的, jekyll3.0 ,更新比较勤。是我比较满意的方案。 ]]>
Jekyll 静态页面 md 格式怎么没有解析 tag:www.v2ex.com,2016-05-09:/t/277488 2016-05-09T16:00:35Z 2016-05-09T18:57:35Z nuc093 member/nuc093 http://qinkun1234.github.io/git-manual/

fork 了minimal-mistakes 3.0

按照 manual https://jekyllrb.com/docs/posts/ 在 _posts 目录下新加了 2016-05-09-git-manual.md 文件后 push 。 预览效果如上怎么跟纯文本一样而不是预期的 markdown 解析格式呢。

]]>
来发一些你们自己原创的 Jekyll 主题吧 tag:www.v2ex.com,2016-04-30:/t/275596 2016-04-30T17:38:50Z 2016-04-30T17:35:50Z sneezry member/sneezry
Jekyll Writer 是一款 Jekyll 网站管理工具,可以管理 Jekyll 网站上的文章、创建 Jekyll 网站以及更改主题。目前 Jekyll Writer 在线市场只收录了两款主题,我希望能把更多出色的主题放进市场中供 Jekyll Writer 的用户使用。

对收录的主题有以下要求:

1 、必须是回复者原创的主题(或经原作者同意代为发布的),如果是基于其他主题更改的,要在主题中明确声明
2 、必须是开源的,但不限定开源协议

回复时请标明以下内容:

1 、主题的名字
2 、获取主题源代码的地址
3 、主题的在线预览地址
4 、作者的署名
5 、作者的主页

非常非常感谢大家的参与,同时也希望在大家的努力下, Jekyll 能被越来越多的人所使用。

下面是 Jekyll Writer 中主题市场的截图
]]>
Jekyll 的 markdown 解析真是蛋疼啊 tag:www.v2ex.com,2016-03-31:/t/267679 2016-03-31T09:02:22Z 2016-03-31T16:06:43Z domty member/domty 同一篇 markdown 文档,用 sublime 的 markdown preview 插件预览效果是正常的 结果发布到 jekyll 本地看效果,文档解析的一塌糊涂

话说有招儿吗。

我已经从 hexo 滚回 jekyll 一次了。。。

]]>
分享一个 Jekyll 框架: Almace Scaffolding tag:www.v2ex.com,2016-03-18:/t/264569 2016-03-18T11:46:29Z 2016-03-18T13:26:17Z sparanoid member/sparanoid 框架特征

Almace Scaffolding (aka. AMSF) 是我自己长期维护的一套框架,基于 Jekyll ,上手速度一般,但习惯后我觉得还是比较好用的,基本特征如下:

主题 Curtana 特征

AMSF 框架自带一款默认主题 Curtana,有以下特征:

Demo

项目链接

]]>
上次吐槽 Jekyll 纯静态,现在博客却已经由 Wordpress 迁移到 Jekyll,你们会骂我么? tag:www.v2ex.com,2016-03-17:/t/264142 2016-03-17T03:23:08Z 2016-03-17T10:54:16Z pizida member/pizida 之前的博客一直用 WordPress 搭建的,但是一直苦于排版之类的东西,后来发现了 markdown 这个好东西。刚好 Jekyll 也支持,所以就打算研究下。

后来吐槽了下静态内容,感觉没有 DB 还是不得劲,吐槽了一下。 不过实践出真知,所以我就用 Jekyll 搭建了一个试试。

顺便记录了自己搭建过程和写博客的流程: http://pizida.com/technology/2016/03/03/use-jekyll-create-blog-on-github/

]]>
Jekyll 输出特定栏目文章列表的方法 tag:www.v2ex.com,2016-03-09:/t/262318 2016-03-09T13:09:07Z 2016-03-09T13:01:07Z winfirm member/winfirm 原文见: http://www.panxw.com/posts/id-jekyll-column-list-output.html
http://www.panxw.com 的栏目也是基于这篇文章的思路建立的。

]]>
jekyll 本地启动的问题 tag:www.v2ex.com,2016-01-30:/t/254401 2016-01-30T02:27:56Z 2016-01-30T13:08:16Z hnns1990 member/hnns1990 我使用 jekyll 搭建了一个个人博客,放在 github pages 上。

因为 push 以前我会在本地启动,看下格式啥的。这个命令: jekyll serve ,但是悲剧的是:博客首页的内容总是空的,不知道什么情况。。有了解 jekyll 的吗?

求给个 debug 的方法

]]>
刚刚又剁手买了 JekyllWriter.com 这个域名,我没救了 tag:www.v2ex.com,2015-12-15:/t/243712 2015-12-15T08:10:01Z 2015-12-16T06:24:43Z sneezry member/sneezry gitbook 生成的静态页面有错误,和 jekyll 有关么? tag:www.v2ex.com,2015-12-04:/t/241200 2015-12-04T09:39:42Z 2015-12-04T09:36:42Z mikangchan member/mikangchan RT 。貌似更新了的 gitbook 只剩下 static 了,生成的是 html ,引入了各种 plugin 的 css 和 js ,但是 html 代码里没有,问下大家有这种情况么?怎么解决的?
另外想问下是不是 jekyll 对 gitbook 有什么加成?

]]>
Jekyll 3.0 Released tag:www.v2ex.com,2015-10-28:/t/231712 2015-10-28T06:11:18Z 2015-10-28T10:36:50Z xcatliu member/xcatliu http://jekyllrb.com/news/2015/10/26/jekyll-3-0-released/ ]]> 怎么替换 jekyll 的 markdown 渲染引擎呢? tag:www.v2ex.com,2015-10-23:/t/230441 2015-10-23T04:08:11Z 2015-10-23T04:14:10Z gzxultra member/gzxultra 有人熟悉 jekyll 么?
不太喜欢默认的 markdown 渲染引擎,如何替换成 GitHub markup 呢?

]]>
Jekyll 以#为注释,那要怎么输出 RGB 颜色? tag:www.v2ex.com,2015-09-29:/t/224478 2015-09-29T04:37:28Z 2015-09-29T05:31:06Z luoway member/luoway color : #123456
这样写, 123456 就被注释掉了。
\转义无效,放_config.yml里还出错…

]]>
jekyll 解析 excel 或 cvs tag:www.v2ex.com,2015-08-24:/t/215460 2015-08-24T01:05:44Z 2015-08-24T01:02:44Z nuc093 member/nuc093 想用 jekyll 解析 excel 或 cvs 前台用 hansontable js 控件来在线显示 excel 功能 不知道有没有例子。

]]>
Hexo 和 Jekyll 的主要差异是什么,各自的优缺点是什么? tag:www.v2ex.com,2015-06-04:/t/196026 2015-06-04T04:05:15Z 2015-07-09T10:40:38Z Mak member/Mak
http://hexo.io/
https://github.com/hexojs/hexo

Jekyll:

http://jekyllrb.com/
https://github.com/jekyll/jekyll ]]>
Jekyll 搭建的博客,大家一般把图放在什么地方呢? tag:www.v2ex.com,2015-04-05:/t/181801 2015-04-05T16:42:31Z 2015-04-12T08:47:06Z Livid member/Livid 2015 年新年知识点! 快速搭建 jekyll by jekyllnow tag:www.v2ex.com,2015-02-17:/t/171479 2015-02-17T05:02:15Z 2015-02-17T04:59:15Z qinkun1234 member/qinkun1234 http://www.jekyllnow.com/about

省去了很多的安装麻烦。这东东设计标准还挺简洁。

➜ jnuc093.github.io git:(master) ✗ gem install github-pages
此步骤安装时候有点慢大概10分钟。

Emoji 啥玩意还没用到。域名还没有单独绑定。

]]>
如何才能将 Jekyll 部署在子目? tag:www.v2ex.com,2015-01-06:/t/159554 2015-01-06T01:43:51Z 2015-01-06T10:10:45Z chztv member/chztv
但发现Jekyll部署只能在根目录下,虽然生成的Post可以自定义URL,能实现原来的要求,但博客首页只能是根目录,我还是想实现 /blog/ 是我的博客首页,要怎么处理? ]]>
推荐两款很好地 jekyll 主题,在 github 写博客吧 tag:www.v2ex.com,2014-12-27:/t/157048 2014-12-27T01:27:36Z 2015-04-10T09:52:43Z itfanr member/itfanr https://github.com/suyan/suyan.github.io
https://github.com/gansteed/gansteed.github.io ]]>
分享一个 Jekyll 主题 tag:www.v2ex.com,2014-11-01:/t/143248 2014-11-01T12:42:13Z 2015-04-17T10:52:06Z pexcn member/pexcn
花了几天时间搞好的主题,Jekyll Light.

Demo: http://pexcn.tk

Download: https://github.com/pexcn/Jekyll-Light/releases

GitHub: https://github.com/pexcn/Jekyll-Light ]]>
jekyll 上传到 github 页面错乱八七,没有样式 tag:www.v2ex.com,2014-10-09:/t/137927 2014-10-09T17:24:20Z 2014-10-09T18:26:49Z wenyi member/wenyi Jekyll 和 Jekyll-bootstrap 有什么区别?能否互通? tag:www.v2ex.com,2014-08-13:/t/127624 2014-08-13T06:02:57Z 2014-08-13T05:52:57Z houny member/houny 我想知道
*这两个到底有什么却别?
*能否按照Jekylll的配置说明去配置Jekylll-bootstrap?

另外,如果我直clone一个别人已有的开源网站,再push到自己的仓库里可以吗?需要怎么配置? ]]>
运行在 GitHub 上的 Jekyll 博客怎么样能够添加文章分类? tag:www.v2ex.com,2014-05-30:/t/115055 2014-05-30T07:52:35Z 2014-06-08T23:12:43Z sohu022 member/sohu022 升级至 2.0.0 有关时区的注意事项 tag:www.v2ex.com,2014-05-13:/t/112423 2014-05-13T14:17:53Z 2014-05-13T18:16:00Z Perry member/Perry
如何避免:
date 的格式需要包含时区信息
如果你是在 Asia/Shanghai 这个时区,则需要将 date 的格式改为 YYYY-MM-DD HH:MM:SS +0800 ]]>
Jekyll 2 默认主题在 Chrome/WebKit 上那个不太正常的 header 高度 tag:www.v2ex.com,2014-05-10:/t/111928 2014-05-10T11:30:02Z 2014-05-10T11:30:02Z Livid member/Livid


我这里发现的解决办法是打开 _includes/header.html 然后修改一下 trigger 里的逻辑,这是修改之后的:

]]>
Jekyll 2 默认主题里的一个小问题 tag:www.v2ex.com,2014-05-10:/t/111927 2014-05-10T11:03:28Z 2014-05-10T12:02:59Z Livid member/Livid
]]>
Jekyll 2.0.0 tag:www.v2ex.com,2014-05-07:/t/111501 2014-05-07T08:07:23Z 2014-05-07T22:04:58Z Livid member/Livid http://jekyllrb.com/news/2014/05/06/jekyll-turns-2-0-0/ ]]> 在ubuntu上安装jekyll遇到了问题 tag:www.v2ex.com,2014-01-03:/t/95571 2014-01-03T13:20:19Z 2014-01-03T19:16:56Z yingluck member/yingluck https://gist.github.com/zhao-ji/8237684

然后 sudo apt-get install ruby1.9.1-dev
https://gist.github.com/zhao-ji/8237706

不是很懂ruby 所以也不知道是怎么回事

求教有经验的V2EXer

或者有简便易用的,可以放在github上的python blog吗? 求推荐! ]]>
吐槽Disqus tag:www.v2ex.com,2013-11-26:/t/90734 2013-11-26T12:27:51Z 2013-11-26T13:24:51Z sd4399340 member/sd4399340
然后就把代码push到github上去了,发现好几篇评论不显示
进Disqus后台命名可以看到这些评论,最后发现原来是discussion thread的URL是本地预览时的URL。。。

后来搜了下,官方果然有说到这问题:

http://help.disqus.com/customer/portal/articles/735138-why-are-the-wrong-urls-detected-for-my-discussions-

第一次加载Disqus的网址会被记录成discussion thread的网址,这设计真是无力吐槽。。。 ]]>
分享个人Jekyll博客 tag:www.v2ex.com,2013-11-18:/t/89670 2013-11-18T04:31:37Z 2013-11-18T15:32:35Z mamimoluo member/mamimoluo http://i.7leyuan.com/
之前一直是WP博客,现在刚迁移到Jekyll,主题自己写的比较简单,欢迎观摩、友链:) ]]>
ubao snddm index pchome yahoo rakuten mypaper meadowduck bidyahoo youbao zxmzxm asda bnvcg cvbfg dfscv mmhjk xxddc yybgb zznbn ccubao uaitu acv GXCV ET GDG YH FG BCVB FJFH CBRE CBC GDG ET54 WRWR RWER WREW WRWER RWER SDG EW SF DSFSF fbbs ubao fhd dfg ewr dg df ewwr ewwr et ruyut utut dfg fgd gdfgt etg dfgt dfgd ert4 gd fgg wr 235 wer3 we vsdf sdf gdf ert xcv sdf rwer hfd dfg cvb rwf afb dfh jgh bmn lgh rty gfds cxv xcv xcs vdas fdf fgd cv sdf tert sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf shasha9178 shasha9178 shasha9178 shasha9178 shasha9178 liflif2 liflif2 liflif2 liflif2 liflif2 liblib3 liblib3 liblib3 liblib3 liblib3 zhazha444 zhazha444 zhazha444 zhazha444 zhazha444 dende5 dende denden denden2 denden21 fenfen9 fenf619 fen619 fenfe9 fe619 sdf sdf sdf sdf sdf zhazh90 zhazh0 zhaa50 zha90 zh590 zho zhoz zhozh zhozho zhozho2 lislis lls95 lili95 lils5 liss9 sdf0ty987 sdft876 sdft9876 sdf09876 sd0t9876 sdf0ty98 sdf0976 sdf0ty986 sdf0ty96 sdf0t76 sdf0876 df0ty98 sf0t876 sd0ty76 sdy76 sdf76 sdf0t76 sdf0ty9 sdf0ty98 sdf0ty987 sdf0ty98 sdf6676 sdf876 sd876 sd876 sdf6 sdf6 sdf9876 sdf0t sdf06 sdf0ty9776 sdf0ty9776 sdf0ty76 sdf8876 sdf0t sd6 sdf06 s688876 sd688 sdf86