在Jekyll的Front Matter中,有没有办法引用另一个文档?
我有一个自定义集合,并希望在每个文档中添加元数据,例如“parent-topic”(指向父级的链接)和“children”(文档数组),或“相关 - 主题”。
通过这样的引用,我可以访问链接文档的元数据,例如标题,网址或其他任意数据。
这个想法是文档的层次结构,包括主题,子主题,子主题等。主题页面可以显示子主题列表,或父主题的面包屑等。
答案 0 :(得分:3)
值得一个真正答案的真正问题。我也有这个文档问题。在advise from Ben Balter之后,我开始使用collections
。想法是
我放弃了,因为对pages
进行编码最简单。所以,这是我用页面做文档的方式。
文档位于文件夹中,例如:文档
permalink
在_config.yml中设置为pretty
文件夹层次结构描述文档组织
示例强>
documentation
|--index.html
|--chapter-1
| |--index.html
|
|--chapter-2
| |--index.html
| |
| |--part-1
| | |--index.html
| | |--subpart-1
| | |--index.html
| |--part-2
| | |--index.html
| |
| |--part-3.html
注意:documentation/chapter-2/part-2/index.html
也可以是documentation/chapter-2/part-2.html
,因为permalink
设置为pretty
,生成的页面将位于documentation/chapter-2/part-2/index.html
。
weight
前端问题变量对同一级别的页面进行排序。这可以是你想要的任何东西。
按十分之一编号可以轻松插入新文档。示例前端
---
title: My title
weight: 10
---
_config.yml
示例强>
defaults:
-
scope:
path: "documentation"
type: pages
values:
isDoc: true # allows quick extraction from site.pages
layout: page
一旦满足这些先决条件,就可以轻松打印内容表和面包屑。
<强> _includes /显示-children.html 强>
{% assign parentDir = include.dir %}
{% if parentDir == nil %}<h1>You must specify a root directory</h1>{% endif %}
{% assign allDocs = include.docs %}
{% if allDocs == nil %}{% assign allDocs = site.pages | sort: "weight" %}{% endif %}
{% assign level = include.level %}
{% if level == nil %}{% assign level = parentDir | remove_first: "/" | split:"/" | size %}{% endif %}
{% assign maxLevel = include.maxLevel %}
{% if maxLevel == nil %}{% assign maxLevel = 100 %}{% endif %}
{% assign nextLevel = level | plus : 1 %}
{% comment %}+++++++++++++++++++++++++++++++++++++++++++++++++
Looking for all page in this path with the same level (siblings)
This avoid to deep recursion and error like :
__ Liquid Exception: Nesting too deep __
+++++++++++++++++++++++++++++++++++++++++++++++++{% endcomment %}
{% assign siblings = "" | split: "/" %}
{% for s in allDocs %}
{% assign sPageLevel = s.url | remove_first: "/" | split:"/" | size %}
{% if sPageLevel == level and s.url contains parentDir %}
{% if s.title %}{% assign siblings = siblings | push: s %}{% endif %}
{% endif %}
{% endfor %}
<ul>
{% for p in siblings %}
<li><a href="{{site.baseurl}}{{p.url}}"{%if p.url == page.url%} class="active"{%endif%}>{{ p.title }}</a>
{% if nextLevel <= maxLevel %}
{% include show-children.html dir=p.dir docs=allDocs level=nextLevel maxLevel=maxLevel %}
{% endif %}
</li>
{% endfor %}
</ul>
{% comment %}+++++++++++++++++++++++++++++++++++++++++++++++++
Because all variables are globales (all includes have the same scope)
we restore level and nextLevel variables to parent values
+++++++++++++++++++++++++++++++++++++++++++++++++{% endcomment %}
{% assign level = level | minus : 1 %}
{% assign nextLevel = nextLevel | minus : 1 %}
可以使用多个参数调用此include:
dir :探索的根目录(即:/ documentation)
docs :一系列网页 - 默认为site.pages
级别:我们开始打印的级别(/文档级别为1, / documentation / chapter-1在2级,依此类推) 默认为'dir'级别
maxLevel :停止打印的位置 - 默认为100
Extracting documentation pages
{% assign documents = site.pages | where: "isDoc", true | sort: "weight" %}
{% assign dir = "documentation" %}
This will print all documentation hierachy
{% include show-children.html dir=dir docs=documents %}
This will start printing at level 2
{% include show-children.html dir=dir docs=documents level=2 %}
This stop printing at level 2
{% include show-children.html dir=dir docs=documents maxLevel=2 %}
在页面布局上,如果您只想打印页面孩子,您可以这样做:
{% assign documents = site.pages | where: "isDoc", true | sort: "weight" %}
{% assign level = page.dir | remove_first: "/" | split:"/" | size %}
{% assign childrenLevel = level | plus : 1 %}
{% include show-children.html docs=documents dir=page.dir level=childrenLevel %}
<强> _includes / breadcrumb.html 强>
{% assign minLevel = include.minLevel %}
{% if minLevel == nil %}{% assign minLevel = 1 %}{% endif %}
<div class="breadcrumb">
<p>You are here : </p>
{% assign documents = site.pages | where: "isDoc", true | sort: "weight" %}
{% include get-parents.html page=page minLevel=minLevel docs=documents %}
<p>{{ page.title }}</p>
</div>
<style type="text/css">
.breadcrumb p { display: inline; }
.breadcrumb p+p+p:before { content:"» "; }
</style>
<强> _includes / GET-parents.html 强>
{% assign currentPage = include.page %}
{% assign minLevel = include.minLevel %}
{% assign allDocs = include.docs %}
{% assign pageLevel = currentPage.dir | remove_first: "/" | split:"/" | size %}
{% assign parentLevel = pageLevel | minus: 1 %}
{% if parentLevel >= minLevel %}
{% for p in allDocs %}
{% assign pPageLevel = p.dir | remove_first: "/" | split:"/" | size %}
{% if pPageLevel == parentLevel and currentPage.dir contains p.dir %}
{% include get-parents.html page=p minLevel=minLevel docs=allDocs %}
<p><a href="{{site.baseurl}}{{p.url}}">{{ p.title }}</a></p>
{% endif %}
{% endfor %}
{% endif %}
打印Documentation > chapter 1 > part 1
{% include breadcrumb.html %}
打印Chapter 1 > part 1
{% include breadcrumb.html minLevel=2 %}
可以更简单吗?