Winy Song

Results 21 comments of Winy Song

Jekyll 默认的 markdown 渲染引擎是 kramdown,https://jekyllrb.com/docs/configuration/markdown/ 这里有说明 kramdown 的语法参考 https://kramdown.gettalong.org/syntax.html#links-and-images

你的图片要是托管在 Github 上的话,可以用其 URL 地址 https://raw.githubusercontent.com/username/repo/master/path/to/image.png

Jekyll 实际呈现的网站结构是在 _site 文件夹下面的,相关说明参考 https://jekyllrb.com/docs/structure/。 你可以去你本地生成的 _site 里面找找看是不是这个原因。

页面是 archive.html,里面也没有 inlcude 语句,所以我觉得和你说的那个 `_inlcudes/featured-tags.html` 没有关系。 我倒是觉得会和 archive.html 下面这几段有关 ``` {% capture tags %} {% for tag in site.tags %} {{ tag[0] }} {{tag[1].size}} {% endfor %} {% endcapture %}...

你最后的图片总是要 push 到 github 上的,你把图片链接改成 push 上去的那个 rawgithub 啥的就行了

目测是个路径问题 https://jekyllrb.com/docs/pagination/ 有配置指南 > You may also specify the destination of the pagination pages: > > `paginate_path: "/blog/page:num/"` > This will read in **blog/index.html**, send it each pagination page in...

不太清楚 canonical 指的是什么。不过如果对 config 文件进行修改的话,请重新 `jekyll s`。 另外这个文件里的变量调用是通过 site 对象来的 更多变量参考 https://jekyllrb.com/docs/variables/

article 的样式是用 bootstrap 的 grid 做的,你搜一下这个再看就很清楚了。

I google it and find Jeff Erickson's Algorithm is on `CS 473` and `CS 573` can also be easily found but it seems that university bilkent also have a course...

@phofl Thanks for your reply, I think your interpretation is reasonable, but there is usecase that we can use ```python out = df.loc[:, [(slice(None), "one"), ("qux", "two")]] ``` instead of...