lobechat and file rename
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,5 +1,5 @@
|
|||||||
*.lock
|
*.lock
|
||||||
public/
|
public/
|
||||||
resources/
|
resources/_gen/
|
||||||
isableFastRander/
|
isableFastRander/
|
||||||
.hugo_build.lock
|
.hugo_build.lock
|
||||||
196
assets/_markdown.scss
Normal file
196
assets/_markdown.scss
Normal file
@@ -0,0 +1,196 @@
|
|||||||
|
@import "variables";
|
||||||
|
|
||||||
|
.markdown {
|
||||||
|
line-height: 1.6;
|
||||||
|
|
||||||
|
// remove padding at the beginning of page
|
||||||
|
> :first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
font-weight: normal;
|
||||||
|
line-height: 1;
|
||||||
|
margin-top: 1.5em;
|
||||||
|
margin-bottom: $padding-16;
|
||||||
|
|
||||||
|
a.anchor {
|
||||||
|
opacity: 0;
|
||||||
|
font-size: 0.75em;
|
||||||
|
vertical-align: middle;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover a.anchor,
|
||||||
|
a.anchor:focus {
|
||||||
|
opacity: initial;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
font-weight: bolder;
|
||||||
|
}
|
||||||
|
|
||||||
|
h5 {
|
||||||
|
font-size: 0.875em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h6 {
|
||||||
|
font-size: 0.75em;
|
||||||
|
}
|
||||||
|
|
||||||
|
b,
|
||||||
|
optgroup,
|
||||||
|
strong {
|
||||||
|
font-weight: bolder;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
&:visited {
|
||||||
|
color: var(--color-visited-link);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
padding: 0 $padding-4;
|
||||||
|
background: var(--gray-200);
|
||||||
|
border-radius: $border-radius;
|
||||||
|
font-size: 0.875em;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
padding: $padding-16;
|
||||||
|
background: var(--gray-100);
|
||||||
|
border-radius: $border-radius;
|
||||||
|
overflow-x: auto;
|
||||||
|
|
||||||
|
code {
|
||||||
|
padding: 0;
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
margin: $padding-16 0;
|
||||||
|
padding: $padding-8 $padding-16 $padding-8 ($padding-16 - $padding-4); //to keep total left space 16dp
|
||||||
|
|
||||||
|
border-inline-start: $padding-4 solid var(--gray-200);
|
||||||
|
border-radius: $border-radius;
|
||||||
|
|
||||||
|
:first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
overflow: auto;
|
||||||
|
border-spacing: 0;
|
||||||
|
border-collapse: collapse;
|
||||||
|
margin-top: $padding-16;
|
||||||
|
margin-bottom: $padding-16;
|
||||||
|
|
||||||
|
tr th,
|
||||||
|
tr td {
|
||||||
|
padding: $padding-8 $padding-16;
|
||||||
|
border: $padding-1 solid var(--gray-200);
|
||||||
|
}
|
||||||
|
|
||||||
|
tr:nth-child(2n) {
|
||||||
|
background: var(--gray-100);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
height: $padding-1;
|
||||||
|
border: none;
|
||||||
|
background: var(--gray-200);
|
||||||
|
}
|
||||||
|
|
||||||
|
ul,
|
||||||
|
ol {
|
||||||
|
padding-inline-start: $padding-16 * 2;
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl {
|
||||||
|
dt {
|
||||||
|
font-weight: bolder;
|
||||||
|
margin-top: $padding-16;
|
||||||
|
}
|
||||||
|
|
||||||
|
dd {
|
||||||
|
margin-inline-start: 0;
|
||||||
|
margin-bottom: $padding-16;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Special case for highlighted code with line numbers
|
||||||
|
.highlight table tr {
|
||||||
|
td:nth-child(1) pre {
|
||||||
|
margin: 0;
|
||||||
|
padding-inline-end: 0;
|
||||||
|
}
|
||||||
|
td:nth-child(2) pre {
|
||||||
|
margin: 0;
|
||||||
|
padding-inline-start: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
details {
|
||||||
|
padding: $padding-16;
|
||||||
|
border: $padding-1 solid var(--gray-200);
|
||||||
|
border-radius: $border-radius;
|
||||||
|
|
||||||
|
summary {
|
||||||
|
line-height: 1;
|
||||||
|
padding: $padding-16;
|
||||||
|
margin: -$padding-16;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
&[open] summary {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
figure {
|
||||||
|
margin: $padding-16 0;
|
||||||
|
figcaption p {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown-inner {
|
||||||
|
// Util class to remove extra margin in nested markdown content
|
||||||
|
> :first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
> :last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
baseURL = 'https://academics.jamesflare.com/'
|
baseURL = 'https://academic.jamesflare.com/'
|
||||||
title = 'Academic Resources'
|
title = 'Academic Resources'
|
||||||
theme = "hugo-book"
|
theme = "hugo-book"
|
||||||
|
|
||||||
|
|||||||
@@ -15,12 +15,16 @@ type: docs
|
|||||||
|
|
||||||
希望在各位的高中,以及今后的学习生涯中帮到各位。
|
希望在各位的高中,以及今后的学习生涯中帮到各位。
|
||||||
|
|
||||||
{{< button relref="docs/学术资源/" >}}前往 学术资源{{< /button >}}
|
{{< button relref="docs/resources/" >}}前往 学术资源{{< /button >}}
|
||||||
|
|
||||||
## 先进工具
|
## 先进工具
|
||||||
|
|
||||||
本栏目主要是对各项先进工具的归纳。
|
本栏目主要是对各项先进工具的归纳,主要是 AI 方面的。
|
||||||
|
|
||||||
希望在各位的高中,以及今后的学习生涯中帮到各位。
|
希望在各位的高中,以及今后的学习生涯中帮到各位。
|
||||||
|
|
||||||
{{< button relref="docs/先进工具/" >}}前往 先进工具{{< /button >}}
|
{{< button relref="docs/tools/" >}}前往 先进工具{{< /button >}}
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -6,4 +6,4 @@ bookCollapseSection: true
|
|||||||
|
|
||||||
## 目录
|
## 目录
|
||||||
|
|
||||||
- [DSAS 无锡狄邦文理学校 原南外国王]({{< relref "/docs/公众号省流版/DSAS/" >}})
|
- [DSAS 无锡狄邦文理学校 原南外国王]({{< relref "/docs/amp-wechat-mp/dsas/" >}})
|
||||||
@@ -17,10 +17,14 @@ title: 无锡狄邦文理学校 原南外国王
|
|||||||
|
|
||||||
## 目录
|
## 目录
|
||||||
|
|
||||||
- [2023年]({{< relref "/docs/公众号省流版/DSAS/2023" >}})
|
- [2023年]({{< relref "/docs/amp-wechat-mp/dsas/2023" >}})
|
||||||
- [2022年]({{< relref "/docs/公众号省流版/DSAS/2022" >}})
|
- [2022年]({{< relref "/docs/amp-wechat-mp/dsas/2022" >}})
|
||||||
- [2021年]({{< relref "/docs/公众号省流版/DSAS/2021" >}})
|
- [2021年]({{< relref "/docs/amp-wechat-mp/dsas/2021" >}})
|
||||||
- [2020年(待办)]({{< relref "/docs/公众号省流版/DSAS/2020" >}})
|
- [2020年(待办)]({{< relref "/docs/amp-wechat-mp/dsas/2020" >}})
|
||||||
- [2019年(待办)]({{< relref "/docs/公众号省流版/DSAS/2019" >}})
|
- [2019年(待办)]({{< relref "/docs/amp-wechat-mp/dsas/2019" >}})
|
||||||
- [2018年(待办)]({{< relref "/docs/公众号省流版/DSAS/2018" >}})
|
- [2018年(待办)]({{< relref "/docs/amp-wechat-mp/dsas/2018" >}})
|
||||||
- [2017年(待办)]({{< relref "/docs/公众号省流版/DSAS/2017" >}})
|
- [2017年(待办)]({{< relref "/docs/amp-wechat-mp/dsas/2017" >}})
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -16,9 +16,7 @@ bookCollapseSection: true
|
|||||||
|
|
||||||
## 问题
|
## 问题
|
||||||
|
|
||||||
源文件的整体是思路是对的,也就是分门别类。
|
源文件的整体是思路是对的,也就是分门别类。但是呢,它有几个问题。
|
||||||
|
|
||||||
但是呢,它有几个问题。
|
|
||||||
|
|
||||||
首先,载体是腾讯文档,自由度和操作性不够。不能很方便地在用于别的地方的同时保存格式,比如用于网页 HTML,邮件,Markdown,PDF,ePub。
|
首先,载体是腾讯文档,自由度和操作性不够。不能很方便地在用于别的地方的同时保存格式,比如用于网页 HTML,邮件,Markdown,PDF,ePub。
|
||||||
|
|
||||||
@@ -30,30 +28,34 @@ bookCollapseSection: true
|
|||||||
|
|
||||||
上述的缺点全是我们的优点,除此之外,我们还有优异的性能
|
上述的缺点全是我们的优点,除此之外,我们还有优异的性能
|
||||||
|
|
||||||
在 [Google PageSpeed Insights](https://pagespeed.web.dev/) 中,
|
在 [Google PageSpeed Insights](https://pagespeed.web.dev) 中,
|
||||||
|
|
||||||
- 99/100 的移动设备得分
|
- 99/100 的移动设备得分
|
||||||
- 100/100 的桌面设备得分
|
- 100/100 的桌面设备得分
|
||||||
|
|
||||||
相较之下,[百度](https://www.baidu.com/)在 [Google PageSpeed Insights](https://pagespeed.web.dev/) 中,
|
相较之下,[NKCS](https://www.nkcswx.cn)在 [Google PageSpeed Insights](https://pagespeed.web.dev) 中,
|
||||||
|
|
||||||
- 33/100 的移动设备得分
|
- 32/100 的移动设备得分
|
||||||
- 93/100 的桌面设备得分
|
- 72/100 的桌面设备得分
|
||||||
|
|
||||||
我们整个页面页面不过几百KB的大小,超级轻量。
|
我们整个页面页面不过几百KB的大小,超级轻量。
|
||||||
|
|
||||||
同时拥有一定的搜索功能,这也是之前不曾拥有的。
|
同时拥有一定的搜索功能(纯前端实现),这也是之前不曾拥有的。
|
||||||
|
|
||||||
## 开发进度
|
## 开发进度
|
||||||
|
|
||||||
不过一切美好的前提是把内容都重写完,这有些困难,工作量失控。
|
不过一切美好的前提是把内容都重写完,这有些困难,工作量失控。
|
||||||
|
|
||||||
- [学科在线资源](学科在线资源/) ~~开发完成~~ **完善内容中**
|
- [学科在线资源](academic-online) ~~开发完成~~ **精炼中 Polishing**
|
||||||
- [学术工具集](学术工具集/) ~~开发完成~~ **完善内容中**
|
- [学术工具集](academic-tools) ~~开发完成~~ **精炼中 Polishing**
|
||||||
- [专业与课外资源](专业与课外资源/) ~~开发完成~~ **完善内容中**
|
- [专业与课外资源](major-extracurricular) ~~开发完成~~ **精炼中 Polishing**
|
||||||
|
|
||||||
## 开始使用
|
## 开始使用
|
||||||
|
|
||||||
使用很简单,所需的资源都罗列好了,
|
使用很简单,所需的资源都罗列好了,
|
||||||
|
|
||||||
点击左侧的 **T**able **o**f **C**ontent(**ToC**)查看具体的简介吧。
|
点击左侧的 **T**able **o**f **C**ontent(**ToC**)查看具体的简介吧。
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -16,12 +16,12 @@ bookCollapseSection: true
|
|||||||
|
|
||||||
## 目录
|
## 目录
|
||||||
|
|
||||||
- [通用](通用/)
|
- [通用](general)
|
||||||
- [美术&历史](美术历史/)
|
- [美术&历史](art-history)
|
||||||
- [自然科学](自然科学/)
|
- [自然科学](nature-science)
|
||||||
- [人文科学](人文科学/)
|
- [人文科学](human-science)
|
||||||
- [数学](数学/)
|
- [数学](math)
|
||||||
- [语言](语言/)
|
- [语言](language)
|
||||||
|
|
||||||
<--->
|
<--->
|
||||||
|
|
||||||
@@ -30,10 +30,10 @@ bookCollapseSection: true
|
|||||||
这很好查询。比如我要找,物理,那它属于
|
这很好查询。比如我要找,物理,那它属于
|
||||||
|
|
||||||
> - 学科
|
> - 学科
|
||||||
> - [自然科学](自然科学/)
|
> - [自然科学](nature-science)
|
||||||
> - **物理**
|
> - **物理**
|
||||||
|
|
||||||
这样的话,直接点击右边的[自然科学](自然科学/)即可找到。
|
这样的话,直接点击右边的[自然科学](nature-science)即可找到。
|
||||||
|
|
||||||
{{< /columns >}}
|
{{< /columns >}}
|
||||||
|
|
||||||
@@ -93,7 +93,7 @@ bookCollapseSection: true
|
|||||||
|
|
||||||
[](https://github.com/JamesFlare1212/SCDocs/)
|
[](https://github.com/JamesFlare1212/SCDocs/)
|
||||||
|
|
||||||
如果你希望提交改动,请以[Pull Request](https://github.com/JamesFlare1212/SCDocs/pulls)的形式提出分支合并请求,而不是试图直接在主分支提交[Commit](https://github.com/JamesFlare1212/SCDocs/commits/dev)。
|
如果你希望提交改动,请以[Pull Request](https://github.com/JamesFlare1212/SCDocs/pulls)的形式提出分支合并请求,而不是试图直接在主分支提交[Commit](https://github.com/JamesFlare1212/SCDocs/commits/master)。
|
||||||
|
|
||||||
### 修正错误
|
### 修正错误
|
||||||
|
|
||||||
@@ -106,3 +106,7 @@ bookCollapseSection: true
|
|||||||
如果你想提出新的想法,我推荐你在[Discussions](https://github.com/JamesFlare1212/SCDocs/discussions)提出,然后进行讨论,而不是提出[Issue](https://github.com/JamesFlare1212/SCDocs/issues),因为这不是错误,而是改进。
|
如果你想提出新的想法,我推荐你在[Discussions](https://github.com/JamesFlare1212/SCDocs/discussions)提出,然后进行讨论,而不是提出[Issue](https://github.com/JamesFlare1212/SCDocs/issues),因为这不是错误,而是改进。
|
||||||
|
|
||||||
如果你有不错的内容,或者知道优质的创作者,欢迎投稿。
|
如果你有不错的内容,或者知道优质的创作者,欢迎投稿。
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -1604,3 +1604,7 @@ ProQuest历史报纸收录了以下主要报纸:
|
|||||||
- 香港历史档案的服务是免费的,任何人都可以访问和利用这些资源。{{< /tab >}}
|
- 香港历史档案的服务是免费的,任何人都可以访问和利用这些资源。{{< /tab >}}
|
||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -218,3 +218,7 @@ Coursera的一些缺点可能是:
|
|||||||
{{< /tab >}}
|
{{< /tab >}}
|
||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@@ -143,3 +143,7 @@ The New Palgrave Dictionary of Economics 是一部经济学的重要词典。它
|
|||||||
{{< /tab >}}
|
{{< /tab >}}
|
||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
## 英语
|
## 英语
|
||||||
|
|
||||||
## [IGCSESUCCESS](https://www.youtube.com/c/iGCSESuccess/videos)
|
### [IGCSESUCCESS](https://www.youtube.com/c/iGCSESuccess/videos)
|
||||||
|
|
||||||
{{< tabs "IGCSESUCCESS" >}}
|
{{< tabs "IGCSESUCCESS" >}}
|
||||||
|
|
||||||
@@ -458,3 +458,7 @@ EALAC的一些缺点可能是:
|
|||||||
{{< /tab >}}
|
{{< /tab >}}
|
||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
数学资源,包括Web工具、YouTuber、非政府组织。
|
数学资源,包括Web工具、YouTuber、非政府组织。
|
||||||
|
|
||||||
### [WolframAlpha](https://www.wolframalpha.com/)
|
## [WolframAlpha](https://www.wolframalpha.com/)
|
||||||
|
|
||||||
{{< tabs "WolframAlpha" >}}
|
{{< tabs "WolframAlpha" >}}
|
||||||
|
|
||||||
@@ -15,19 +15,19 @@ WolframAlpha可以帮助你进行各种计算,如代数、微积分、统计
|
|||||||
{{< /tab >}}
|
{{< /tab >}}
|
||||||
|
|
||||||
{{< tab "价格" >}}
|
{{< tab "价格" >}}
|
||||||
#### 基础版
|
### 基础版
|
||||||
|
|
||||||
- 可定制的个性化体验设置
|
- 可定制的个性化体验设置
|
||||||
- 不包括逐步解决方案
|
- 不包括逐步解决方案
|
||||||
- 每月 $0,年付 $0。
|
- 每月 $0,年付 $0。
|
||||||
|
|
||||||
#### 专业版
|
### 专业版
|
||||||
|
|
||||||
- 增强功能,包括逐步解决方案
|
- 增强功能,包括逐步解决方案
|
||||||
- 增加计算时间和计算器Web应用程序
|
- 增加计算时间和计算器Web应用程序
|
||||||
- 每月 $7.25,年付 $60.00。
|
- 每月 $7.25,年付 $60.00。
|
||||||
|
|
||||||
#### 高级版
|
### 高级版
|
||||||
|
|
||||||
- 全面访问所有功能和优先客户支持
|
- 全面访问所有功能和优先客户支持
|
||||||
- 每月 $8.25,年付 $99.00。
|
- 每月 $8.25,年付 $99.00。
|
||||||
@@ -79,7 +79,7 @@ WolframAlpha可以帮助你进行各种计算,如代数、微积分、统计
|
|||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
### [3Blue1Brown](https://www.youtube.com/c/3blue1brown)
|
## [3Blue1Brown](https://www.youtube.com/c/3blue1brown)
|
||||||
|
|
||||||
{{< tabs "3Blue1Brown" >}}
|
{{< tabs "3Blue1Brown" >}}
|
||||||
|
|
||||||
@@ -105,7 +105,7 @@ WolframAlpha可以帮助你进行各种计算,如代数、微积分、统计
|
|||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
### [Bicen Maths/Bicen Maths GCSE](https://www.youtube.com/c/BicenMaths)
|
## [Bicen Maths/Bicen Maths GCSE](https://www.youtube.com/c/BicenMaths)
|
||||||
|
|
||||||
{{< tabs "Bicen Maths/Bicen Maths GCSE" >}}
|
{{< tabs "Bicen Maths/Bicen Maths GCSE" >}}
|
||||||
|
|
||||||
@@ -135,7 +135,7 @@ Bicen Maths/Bicen Maths GCSE的一些缺点可能是:
|
|||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
### [Flammable Maths](https://www.youtube.com/c/papaflammy)
|
## [Flammable Maths](https://www.youtube.com/c/papaflammy)
|
||||||
|
|
||||||
{{< tabs "Flammable Maths" >}}
|
{{< tabs "Flammable Maths" >}}
|
||||||
|
|
||||||
@@ -171,7 +171,7 @@ Flammable Maths 的一些缺点可能是:
|
|||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
### [Blackpenredpen](https://www.youtube.com/c/blackpenredpen)
|
## [Blackpenredpen](https://www.youtube.com/c/blackpenredpen)
|
||||||
|
|
||||||
{{< tabs "Blackpenredpen" >}}
|
{{< tabs "Blackpenredpen" >}}
|
||||||
|
|
||||||
@@ -202,7 +202,7 @@ Blackpenredpen的一些缺点可能是:
|
|||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
### [Sohil Rathi](https://www.youtube.com/c/SohilRathi)
|
## [Sohil Rathi](https://www.youtube.com/c/SohilRathi)
|
||||||
|
|
||||||
{{< tabs "Sohil Rathi" >}}
|
{{< tabs "Sohil Rathi" >}}
|
||||||
|
|
||||||
@@ -230,7 +230,7 @@ Sohil Rathi 的一些缺点可能是:
|
|||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
### [**A**rt **o**f **P**roblem **S**olving](https://artofproblemsolving.com/) (**AoPS**)
|
## [**A**rt **o**f **P**roblem **S**olving](https://artofproblemsolving.com/) (**AoPS**)
|
||||||
|
|
||||||
{{< tabs "AoPS" >}}
|
{{< tabs "AoPS" >}}
|
||||||
|
|
||||||
@@ -260,7 +260,7 @@ AoPS的一些缺点可能是:
|
|||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
### [Derivative Calculator](https://www.derivative-calculator.net)
|
## [Derivative Calculator](https://www.derivative-calculator.net)
|
||||||
|
|
||||||
{{< tabs "Derivative Calculator" >}}
|
{{< tabs "Derivative Calculator" >}}
|
||||||
|
|
||||||
@@ -294,7 +294,7 @@ Derivative Calculator是一个可以计算函数微分的在线工具。当你
|
|||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
### [Integral Calculator](https://www.integral-calculator.com/)
|
## [Integral Calculator](https://www.integral-calculator.com/)
|
||||||
|
|
||||||
{{< tabs "Integral Calculator" >}}
|
{{< tabs "Integral Calculator" >}}
|
||||||
|
|
||||||
@@ -321,3 +321,7 @@ Integral Calculator是一个免费的在线积分计算器,可以在任何设
|
|||||||
- 学生需要根据学习需要和目的来选择是否使用积分计算器,不要过度依赖它。{{< /tab >}}
|
- 学生需要根据学习需要和目的来选择是否使用积分计算器,不要过度依赖它。{{< /tab >}}
|
||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -326,3 +326,7 @@ YourGenome的一些缺点可能是:
|
|||||||
{{< /tab >}}
|
{{< /tab >}}
|
||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -16,9 +16,9 @@ bookCollapseSection: true
|
|||||||
|
|
||||||
## 目录
|
## 目录
|
||||||
|
|
||||||
- [书籍文献](书籍/)
|
- [书籍文献](docs)
|
||||||
- [写作工具](写作/)
|
- [写作工具](writing)
|
||||||
- [研究工具](研究/)
|
- [研究工具](research)
|
||||||
|
|
||||||
<--->
|
<--->
|
||||||
|
|
||||||
@@ -27,10 +27,10 @@ bookCollapseSection: true
|
|||||||
这很好查询。比如我要找,Z-Libray,那它属于
|
这很好查询。比如我要找,Z-Libray,那它属于
|
||||||
|
|
||||||
> - 学术工具集
|
> - 学术工具集
|
||||||
> - [书籍文献](书籍/)
|
> - [书籍文献](docs)
|
||||||
> - Z-Libray
|
> - Z-Libray
|
||||||
|
|
||||||
这样的话,直接点击右边的[书籍文献](书籍/)即可找到。
|
这样的话,直接点击右边的[书籍文献](docs)即可找到。
|
||||||
|
|
||||||
{{< /columns >}}
|
{{< /columns >}}
|
||||||
|
|
||||||
@@ -77,7 +77,7 @@ bookCollapseSection: true
|
|||||||
|
|
||||||
[](https://github.com/JamesFlare1212/SCDocs/)
|
[](https://github.com/JamesFlare1212/SCDocs/)
|
||||||
|
|
||||||
如果你希望提交改动,请以[Pull Request](https://github.com/JamesFlare1212/SCDocs/pulls)的形式提出分支合并请求,而不是试图直接在主分支提交[Commit](https://github.com/JamesFlare1212/SCDocs/commits/dev)。
|
如果你希望提交改动,请以[Pull Request](https://github.com/JamesFlare1212/SCDocs/pulls)的形式提出分支合并请求,而不是试图直接在主分支提交[Commit](https://github.com/JamesFlare1212/SCDocs/commits/master)。
|
||||||
|
|
||||||
### 修正错误
|
### 修正错误
|
||||||
|
|
||||||
@@ -90,3 +90,7 @@ bookCollapseSection: true
|
|||||||
如果你想提出新的想法,我推荐你在[Discussions](https://github.com/JamesFlare1212/SCDocs/discussions)提出,然后进行讨论,而不是提出[Issue](https://github.com/JamesFlare1212/SCDocs/issues),因为这不是错误,而是改进。
|
如果你想提出新的想法,我推荐你在[Discussions](https://github.com/JamesFlare1212/SCDocs/discussions)提出,然后进行讨论,而不是提出[Issue](https://github.com/JamesFlare1212/SCDocs/issues),因为这不是错误,而是改进。
|
||||||
|
|
||||||
如果你有不错的内容,或者知道优质的创作者,欢迎投稿。
|
如果你有不错的内容,或者知道优质的创作者,欢迎投稿。
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -12,18 +12,16 @@ bookCollapseSection: true
|
|||||||
|
|
||||||
本页的主要目的是帮助各位快速定位到你们需要的内容。
|
本页的主要目的是帮助各位快速定位到你们需要的内容。
|
||||||
|
|
||||||
## 目录
|
|
||||||
|
|
||||||
{{< columns >}}
|
{{< columns >}}
|
||||||
|
|
||||||
## 目录
|
## 目录
|
||||||
|
|
||||||
- [通用](通用/)
|
- [通用](general)
|
||||||
- [美术&历史](美术历史/)
|
- [美术&历史](art-history)
|
||||||
- [自然科学](自然科学/)
|
- [自然科学](nature-science)
|
||||||
- [人文科学](人文科学/)
|
- [人文科学](human-science)
|
||||||
- [数学](数学/)
|
- [数学](math)
|
||||||
- [语言(暂无)](语言/)
|
- [语言(暂无)](language)
|
||||||
|
|
||||||
<--->
|
<--->
|
||||||
|
|
||||||
@@ -32,10 +30,10 @@ bookCollapseSection: true
|
|||||||
这很好查询。比如我要找,经济相关的,那它属于
|
这很好查询。比如我要找,经济相关的,那它属于
|
||||||
|
|
||||||
> - 专业与课外资源
|
> - 专业与课外资源
|
||||||
> - [人文科学](人文科学/)
|
> - [人文科学](human-science)
|
||||||
> - **Economics/PPE/PE**
|
> - **Economics/PPE/PE**
|
||||||
|
|
||||||
这样的话,直接点击右边的[人文科学](人文科学/)即可找到。
|
这样的话,直接点击右边的[人文科学](human-science)即可找到。
|
||||||
|
|
||||||
{{< /columns >}}
|
{{< /columns >}}
|
||||||
|
|
||||||
@@ -54,7 +52,7 @@ bookCollapseSection: true
|
|||||||
- Tobby Xu
|
- Tobby Xu
|
||||||
- Catherine Zhang
|
- Catherine Zhang
|
||||||
- Wendy Qi
|
- Wendy Qi
|
||||||
- [James Zhou](https://jamesflare.com)
|
- [James Zhou](https://www.jamesflare.com)
|
||||||
- Angel Hu
|
- Angel Hu
|
||||||
|
|
||||||
<--->
|
<--->
|
||||||
@@ -84,7 +82,7 @@ bookCollapseSection: true
|
|||||||
|
|
||||||
### 开发
|
### 开发
|
||||||
|
|
||||||
- [James Zhou](https://jamesflare.com)
|
- [James Zhou](https://www.jamesflare.com)
|
||||||
|
|
||||||
### 头
|
### 头
|
||||||
|
|
||||||
@@ -98,7 +96,7 @@ bookCollapseSection: true
|
|||||||
|
|
||||||
[](https://github.com/JamesFlare1212/SCDocs/)
|
[](https://github.com/JamesFlare1212/SCDocs/)
|
||||||
|
|
||||||
如果你希望提交改动,请以[Pull Request](https://github.com/JamesFlare1212/SCDocs/pulls)的形式提出分支合并请求,而不是试图直接在主分支提交[Commit](https://github.com/JamesFlare1212/SCDocs/commits/dev)。
|
如果你希望提交改动,请以[Pull Request](https://github.com/JamesFlare1212/SCDocs/pulls)的形式提出分支合并请求,而不是试图直接在主分支提交[Commit](https://github.com/JamesFlare1212/SCDocs/commits/master)。
|
||||||
|
|
||||||
### 修正错误
|
### 修正错误
|
||||||
|
|
||||||
@@ -111,3 +109,7 @@ bookCollapseSection: true
|
|||||||
如果你想提出新的想法,我推荐你在[Discussions](https://github.com/JamesFlare1212/SCDocs/discussions)提出,然后进行讨论,而不是提出[Issue](https://github.com/JamesFlare1212/SCDocs/issues),因为这不是错误,而是改进。
|
如果你想提出新的想法,我推荐你在[Discussions](https://github.com/JamesFlare1212/SCDocs/discussions)提出,然后进行讨论,而不是提出[Issue](https://github.com/JamesFlare1212/SCDocs/issues),因为这不是错误,而是改进。
|
||||||
|
|
||||||
如果你有不错的内容,或者知道优质的创作者,欢迎投稿。
|
如果你有不错的内容,或者知道优质的创作者,欢迎投稿。
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -1,3 +1,5 @@
|
|||||||
|
# 美术 & 历史
|
||||||
|
|
||||||
## 同学社Academy
|
## 同学社Academy
|
||||||
|
|
||||||
{{< tabs "同学社Academy" >}}
|
{{< tabs "同学社Academy" >}}
|
||||||
@@ -39,3 +41,7 @@
|
|||||||
{{< tabs "Pinterest" >}}
|
{{< tabs "Pinterest" >}}
|
||||||
{{< tab "简介" >}}这是一个网站,你可以在上面发现各种创意和灵感。{{< /tab >}}
|
{{< tab "简介" >}}这是一个网站,你可以在上面发现各种创意和灵感。{{< /tab >}}
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -6,20 +6,24 @@
|
|||||||
{{< tab "简介" >}}这是剑桥大学提供的一个网站,可以作为探索你感兴趣的专业的起点。类别清晰,一些主题带有简单的介绍和推荐视频。此外,还包括一些资源,如播客和 YouTube 视频链接。{{< /tab >}}
|
{{< tab "简介" >}}这是剑桥大学提供的一个网站,可以作为探索你感兴趣的专业的起点。类别清晰,一些主题带有简单的介绍和推荐视频。此外,还包括一些资源,如播客和 YouTube 视频链接。{{< /tab >}}
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
### [Coursera](https://www.coursera.org/)
|
## [Coursera](https://www.coursera.org/)
|
||||||
|
|
||||||
{{< tabs "Coursera" >}}
|
{{< tabs "Coursera" >}}
|
||||||
{{< tab "简介" >}}这是一个网站,提供免费和付费的高级课程和在线学位,课程来自世界各地知名大学的教授。{{< /tab >}}
|
{{< tab "简介" >}}这是一个网站,提供免费和付费的高级课程和在线学位,课程来自世界各地知名大学的教授。{{< /tab >}}
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
### [Horizon Inspires](https://www.horizoninspires.com/courses)
|
## [Horizon Inspires](https://www.horizoninspires.com/courses)
|
||||||
|
|
||||||
{{< tabs "Horizon Inspires" >}}
|
{{< tabs "Horizon Inspires" >}}
|
||||||
{{< tab "简介" >}}这是一个提供不同种类的研究项目的网站。一个很好的地方,在寒暑假期间寻找课外活动。{{< /tab >}}
|
{{< tab "简介" >}}这是一个提供不同种类的研究项目的网站。一个很好的地方,在寒暑假期间寻找课外活动。{{< /tab >}}
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
### [edX](https://www.edx.org/school/stanfordonline)
|
## [edX](https://www.edx.org/school/stanfordonline)
|
||||||
|
|
||||||
{{< tabs "edX" >}}
|
{{< tabs "edX" >}}
|
||||||
{{< tab "简介" >}}这是一个由斯坦福大学开设的在线课程平台。{{< /tab >}}
|
{{< tab "简介" >}}这是一个由斯坦福大学开设的在线课程平台。{{< /tab >}}
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -122,3 +122,7 @@
|
|||||||
{{< tabs "Model United Nations" >}}
|
{{< tabs "Model United Nations" >}}
|
||||||
{{< tab "简介" >}}这是一个模拟联合国会议的大型会议,你可以在会议上讨论解决当前全球问题的解决方案。{{< /tab >}}
|
{{< tab "简介" >}}这是一个模拟联合国会议的大型会议,你可以在会议上讨论解决当前全球问题的解决方案。{{< /tab >}}
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
# 语言
|
||||||
|
|
||||||
|
{{< hint info >}}
|
||||||
|
Pending
|
||||||
|
{{< /hint >}}
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
# 数学
|
# 数学
|
||||||
|
|
||||||
### [STEP Support Program by Cambridge](https://maths.org/step/)
|
## [STEP Support Program by Cambridge](https://maths.org/step/)
|
||||||
|
|
||||||
{{< tabs "STEP support program by Cambridge" >}}
|
{{< tabs "STEP support program by Cambridge" >}}
|
||||||
{{< tab "简介" >}}这是剑桥大学提供的STEP问题解题结构化介绍计划,对所有人免费开放。{{< /tab >}}
|
{{< tab "简介" >}}这是剑桥大学提供的STEP问题解题结构化介绍计划,对所有人免费开放。{{< /tab >}}
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
### [MAT Livestream by Oxford](https://www.maths.ox.ac.uk/study-here/undergraduate-study/maths-admissions-test/mat-livestream)
|
## [MAT Livestream by Oxford](https://www.maths.ox.ac.uk/study-here/undergraduate-study/maths-admissions-test/mat-livestream)
|
||||||
|
|
||||||
{{< tabs "MAT Livestream by Oxford" >}}
|
{{< tabs "MAT Livestream by Oxford" >}}
|
||||||
|
|
||||||
@@ -20,3 +20,7 @@
|
|||||||
{{< /tab >}}
|
{{< /tab >}}
|
||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -50,3 +50,7 @@
|
|||||||
{{< /tab >}}
|
{{< /tab >}}
|
||||||
|
|
||||||
{{< /tabs >}}
|
{{< /tabs >}}
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
31
content.zh/docs/roadmap/_index.md
Normal file
31
content.zh/docs/roadmap/_index.md
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
---
|
||||||
|
title: 规划
|
||||||
|
---
|
||||||
|
|
||||||
|
# 规划
|
||||||
|
|
||||||
|
## 新功能
|
||||||
|
|
||||||
|
- [ ] 添加免费Save My Exam网站镜像
|
||||||
|
- [ ] 添加免费StudyIB_HL网站镜像
|
||||||
|
- [ ] 添加免费TheoryOfKnowledge.net网站镜像
|
||||||
|
- [ ] 添加免费ThinkIB_InThinking网站镜像
|
||||||
|
- [ ] 添加免费IB QUESTIONBANKS网站镜像
|
||||||
|
- [ ] 添加免费RevisionVellage网站镜像
|
||||||
|
|
||||||
|
## 优化
|
||||||
|
|
||||||
|
- [ ] 优化网站性能
|
||||||
|
- [ ] 推迟CSS加载
|
||||||
|
- [ ] 推迟JS加载
|
||||||
|
- [ ] 部署ChangeDetection.io监控共享文档变化
|
||||||
|
- [ ] 自动化文章翻译
|
||||||
|
|
||||||
|
## 修复
|
||||||
|
|
||||||
|
- [ ] 修复网站缺失英文翻译的问题
|
||||||
|
- [ ] 完成未处理的公众号文章
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
24
content.zh/docs/tools/_index.md
Normal file
24
content.zh/docs/tools/_index.md
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
title: 先进工具
|
||||||
|
---
|
||||||
|
|
||||||
|
# 先进工具
|
||||||
|
|
||||||
|
## 前言
|
||||||
|
|
||||||
|
每个时代都有一些划时代的工具
|
||||||
|
|
||||||
|
## 目录
|
||||||
|
|
||||||
|
- [LLM系列](llms)
|
||||||
|
- [LobeChat](llms/lobechat)
|
||||||
|
|
||||||
|
## 开始使用
|
||||||
|
|
||||||
|
使用很简单,所需的资源都罗列好了,
|
||||||
|
|
||||||
|
点击左侧的 **T**able **o**f **C**ontent(**ToC**)查看具体的简介吧。
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -1,26 +1,27 @@
|
|||||||
---
|
---
|
||||||
title: GPT 系列
|
title: LLM 系列
|
||||||
---
|
---
|
||||||
|
|
||||||
# GPT系列
|
# LLM 系列
|
||||||
|
|
||||||
|
{{< hint warning >}}
|
||||||
|
WIP - Working In Progress
|
||||||
|
{{< /hint >}}
|
||||||
|
|
||||||
## 前言
|
## 前言
|
||||||
|
|
||||||
{{< hint warning >}}
|
|
||||||
内容尚在编写开发,并不完善
|
|
||||||
{{< /hint >}}
|
|
||||||
|
|
||||||
本页的主要目的是帮助各位快速定位到你们需要的内容。
|
本页的主要目的是帮助各位快速定位到你们需要的内容。
|
||||||
|
|
||||||
{{< columns >}}
|
|
||||||
|
|
||||||
## 目录
|
## 目录
|
||||||
|
|
||||||
- [Prompt Repository]({{< relref "/docs/先进工具/LLM系列/GPT系列/Prompt Repository/" >}})
|
{{< columns >}}
|
||||||
- [Prompt Example]({{< relref "/docs/先进工具/LLM系列/GPT系列/Prompt Example/" >}})
|
|
||||||
- [Prompt Technique]({{< relref "/docs/先进工具/LLM系列/GPT系列/Prompt Technique/" >}})
|
- [LobeChat](lobechat/)
|
||||||
|
|
||||||
<--->
|
<--->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{{< /columns >}}
|
{{< /columns >}}
|
||||||
|
|
||||||
## 社区贡献者
|
## 社区贡献者
|
||||||
@@ -33,18 +34,15 @@ title: GPT 系列
|
|||||||
|
|
||||||
- [James Zhou](/zh/posts/about/james-zhou/)
|
- [James Zhou](/zh/posts/about/james-zhou/)
|
||||||
|
|
||||||
|
### 开发
|
||||||
|
|
||||||
|
- [James Zhou](https://www.jamesflare.com)
|
||||||
|
|
||||||
<--->
|
<--->
|
||||||
|
|
||||||
### 板块
|
### 板块
|
||||||
|
|
||||||
#### [Prompt Example]({{< relref "/docs/先进工具/LLM系列/GPT系列/Prompt Example/" >}})
|
- [LobeChat]({{< relref "/docs/tools/llms/lobechat" >}})
|
||||||
|
|
||||||
- [James Zhou](/zh/posts/about/james-zhou/)
|
|
||||||
|
|
||||||
<--->
|
|
||||||
|
|
||||||
### 开发
|
|
||||||
|
|
||||||
- [James Zhou](https://www.jamesflare.com)
|
- [James Zhou](https://www.jamesflare.com)
|
||||||
|
|
||||||
{{< /columns >}}
|
{{< /columns >}}
|
||||||
@@ -55,7 +53,7 @@ title: GPT 系列
|
|||||||
|
|
||||||
[](https://github.com/JamesFlare1212/SCDocs/)
|
[](https://github.com/JamesFlare1212/SCDocs/)
|
||||||
|
|
||||||
如果你希望提交改动,请以[Pull Request](https://github.com/JamesFlare1212/SCDocs/pulls)的形式提出分支合并请求,而不是试图直接在主分支提交[Commit](https://github.com/JamesFlare1212/SCDocs/commits/dev)。
|
如果你希望提交改动,请以[Pull Request](https://github.com/JamesFlare1212/SCDocs/pulls)的形式提出分支合并请求,而不是试图直接在主分支提交[Commit](https://github.com/JamesFlare1212/SCDocs/commits/master)。
|
||||||
|
|
||||||
### 修正错误
|
### 修正错误
|
||||||
|
|
||||||
@@ -68,3 +66,7 @@ title: GPT 系列
|
|||||||
如果你想提出新的想法,我推荐你在[Discussions](https://github.com/JamesFlare1212/SCDocs/discussions)提出,然后进行讨论,而不是提出[Issue](https://github.com/JamesFlare1212/SCDocs/issues),因为这不是错误,而是改进。
|
如果你想提出新的想法,我推荐你在[Discussions](https://github.com/JamesFlare1212/SCDocs/discussions)提出,然后进行讨论,而不是提出[Issue](https://github.com/JamesFlare1212/SCDocs/issues),因为这不是错误,而是改进。
|
||||||
|
|
||||||
如果你有不错的内容,或者知道优质的创作者,欢迎投稿。
|
如果你有不错的内容,或者知道优质的创作者,欢迎投稿。
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
75
content.zh/docs/tools/llms/lobechat/_index.md
Normal file
75
content.zh/docs/tools/llms/lobechat/_index.md
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
---
|
||||||
|
title: LobeChat
|
||||||
|
---
|
||||||
|
|
||||||
|
# LobeChat
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## 介绍
|
||||||
|
|
||||||
|
LobeChat是一个开源的前端项目支持多种LLM,你可以配置自己的API和模型供应商然后进行对话。
|
||||||
|
|
||||||
|
[](https://github.com/lobehub/lobe-chat)
|
||||||
|
|
||||||
|
作为一点福利,我们提供了一个在线的LobeChat,你可以直接访问[这里](https://lobe.jamesflare.com/)。我们配置好了多数API并且为你承担了这些费用,你只需要输入一个Access Password即可免费使用,不过我们不对此项服务的可用性做出保证。也就是说不要将重要业务依赖于此,通过逆向工程提取API盈利也是不被允许的。
|
||||||
|
|
||||||
|
## Access Password
|
||||||
|
|
||||||
|
Access Password是一个用于验证身份的字符串,你可以在[这里](https://lobe.jamesflare.com/settings/common)输入Access Password来使用LobeChat。Access Password是有时效性的,过期后你需要重新获取一个新的Access Password。
|
||||||
|
|
||||||
|
我并不希望过多的人拥有Access Password,特别不是学校里的人。如需获取Access Password,请发送邮件到 support@jamesflare.com,邮件标题为“LobeChat Access Password”,邮件内容请回答 NKCS / DSAS 用的校务管理系统的网址是什么,或者它的名字叫什么。除此之外你还可以向已有的同学询问,或者联系Derick Jiang或者James Zhou,如果你能。
|
||||||
|
|
||||||
|
我们正在寻找一种更好的自动化验证方式。
|
||||||
|
|
||||||
|
## 可用模型
|
||||||
|
|
||||||
|
- GPT-3.5 Turbo
|
||||||
|
- GPT-4 32K
|
||||||
|
- Claude 3 Opus
|
||||||
|
- Mixtral 8x7B
|
||||||
|
- Qwen 1.5 14B Chat
|
||||||
|
|
||||||
|
关于模型的实时可用性可以前去[这里](https://status.jamesflare.com/)查看,里面包含了我的所有服务。
|
||||||
|
|
||||||
|
我个人推荐Claude 3 Opus,它的性能超过了GPT-4 0314仅次于GPT-4 Turbo。同时还支持多模态输入,你可以在单轮对话中输入多张图片。这很有趣,比如你有数张手写的实验记录,一起上传它们,然后就可以让Claude整理数据并且撰写实验报告。如果你有多页论文,也可以一同截图上传,这对Claude来说是小菜一碟。
|
||||||
|
|
||||||
|
## 价格
|
||||||
|
|
||||||
|
虽然你无需付钱,但是我还是希望你们了解一下这些API的价格,现阶段,它们依旧非常昂贵。如果你在未来要在自己的产品中使用,那么你需要考虑这些费用。
|
||||||
|
|
||||||
|
|Model Name|Price of Input|Price of Output|
|
||||||
|
|-|-|-|
|
||||||
|
|GPT-3.5 Turbo|$0.50 / 1M tokens|$1.50 / 1M tokens|
|
||||||
|
|GPT-4 32K|$60.00 / 1M tokens|$120.00 / 1M tokens|
|
||||||
|
|Claude 3 Opus|$15.00 / 1M tokens|$75.00 / 1M tokens|
|
||||||
|
|Mixtral 8x7B|$0.60 / 1M tokens|$0.60 / 1M tokens|
|
||||||
|
|Qwen 1.5 14B Chat|$0.30 / 1M tokens|$0.30 / 1M tokens|
|
||||||
|
|
||||||
|
Token是一个在LLM领域常用的单位,它代表一个分词,比如sunset就是两个token(sun和set),the的话就是一个token,中文字符每个都是2 token。
|
||||||
|
|
||||||
|
这里的价格是以每百万token为单位的,也就是说你的对话越长,你需要支付的费用就越高。模型并没有记忆,“记忆”是通过上下文实现的,假设你在第一轮对话中用了输入了100个token,模型生成了500个token,那么你的费用就是100个输入token和500个输出token的总和。随后你追问一个50个token的问题,模型回答了200个token,那么你的费用就是150个token的输入和700个token的输出。如果不清除多余的上下文,不仅会造成费用的浪费,还会影响模型的性能。
|
||||||
|
|
||||||
|
再来一个例子,假设你在单个请求中几乎用满了GPT-4 32K的32K Content Window,那么你的费用就差不多是两美元。一次对话就花了2美元,还不考虑输出更贵,这个价格是非常昂贵的,所以请务必注意你的输入和输出。
|
||||||
|
|
||||||
|
## Content Window
|
||||||
|
|
||||||
|
每个模型有它们的Content Window,也就是能容纳的最大输入长度。如果你的输入超过了这个长度,模型会报错。
|
||||||
|
|
||||||
|
|Model Name|Content Window|
|
||||||
|
|-|-|
|
||||||
|
|GPT-3.5 Turbo|16k tokens|
|
||||||
|
|GPT-4 32K|32k tokens|
|
||||||
|
|Claude 3 Opus|200k tokens|
|
||||||
|
|Mixtral 8x7B|32k tokens|
|
||||||
|
|Qwen 1.5 14B Chat|32k tokens|
|
||||||
|
|
||||||
|
## 性能
|
||||||
|
|
||||||
|
不同模型有不同的性能,测试数据多种多样,但我更推荐[LMSYS Chatbot Arena Leaderboard](https://huggingface.co/spaces/lmsys/chatbot-arena-leaderboard)它基于 Elo 算法,LoL和CS2的排名也是用的这个算法,它是一个非常著名的排名算法。
|
||||||
|
|
||||||
|
但我还是希望根据你们的实际使用环境来做选择,感觉好用就好。
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
BIN
content.zh/docs/tools/llms/lobechat/lobe-chat-ui.avif
Normal file
BIN
content.zh/docs/tools/llms/lobechat/lobe-chat-ui.avif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 88 KiB |
@@ -1 +0,0 @@
|
|||||||
# Bard系列
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
# Bing 系列
|
|
||||||
@@ -1,85 +0,0 @@
|
|||||||
# Prompt Example
|
|
||||||
|
|
||||||
## 英文词典
|
|
||||||
|
|
||||||
{{< tabs "词典" >}}
|
|
||||||
|
|
||||||
{{< tab "效果" >}}
|
|
||||||
{{< figure src="en-dictionary.avif" width=500px >}}
|
|
||||||
{{< /tab >}}
|
|
||||||
|
|
||||||
{{< tab "Prompt" >}}
|
|
||||||
System Prompt
|
|
||||||
|
|
||||||
```
|
|
||||||
You are an English word lookup helper. Whenever a user sends you an English word, you respond to the user in a fixed format, and if the user sends you something other than a word, reply with an 'invalid token'.
|
|
||||||
```
|
|
||||||
|
|
||||||
User
|
|
||||||
|
|
||||||
```
|
|
||||||
run
|
|
||||||
```
|
|
||||||
|
|
||||||
Assistant
|
|
||||||
|
|
||||||
```
|
|
||||||
## run [/rʌn/]
|
|
||||||
|
|
||||||
### n. 奔跑;竞赛;连续的演出
|
|
||||||
|
|
||||||
> He went for a run after work.
|
|
||||||
>
|
|
||||||
> 他下班后去跑步了
|
|
||||||
|
|
||||||
### v. 奔跑;运行
|
|
||||||
|
|
||||||
> I like to run in the park every morning.
|
|
||||||
>
|
|
||||||
> 我喜欢每天早上在公园里跑步
|
|
||||||
|
|
||||||
### adj. 连续的;流畅的
|
|
||||||
|
|
||||||
> This printer is really fast and runs smoothly.
|
|
||||||
>
|
|
||||||
> 这台打印机速度非常快,而且运行流畅
|
|
||||||
```
|
|
||||||
|
|
||||||
User
|
|
||||||
|
|
||||||
```
|
|
||||||
with
|
|
||||||
```
|
|
||||||
|
|
||||||
Assistant
|
|
||||||
|
|
||||||
```
|
|
||||||
## with [wɪð, wɪθ]
|
|
||||||
|
|
||||||
### prep. 有;带着;使用;用
|
|
||||||
|
|
||||||
> She cut the cake with a knife.
|
|
||||||
>
|
|
||||||
> 她用刀子切蛋糕。
|
|
||||||
|
|
||||||
### conj. 和;随着
|
|
||||||
|
|
||||||
> With a little bit of luck, we'll finish the project on time.
|
|
||||||
>
|
|
||||||
> 有点运气的话,我们会按时完成这个项目。
|
|
||||||
|
|
||||||
### adv. 一起;同时
|
|
||||||
|
|
||||||
> They arrived with their children.
|
|
||||||
>
|
|
||||||
> 他们带着孩子一起到达了。
|
|
||||||
```
|
|
||||||
{{< /tab >}}
|
|
||||||
|
|
||||||
{{< tab "解释" >}}
|
|
||||||
这里使用了Few Shot的技巧,直接使用一个System Prompt可能会导致输出内容的格式不确定。
|
|
||||||
|
|
||||||
通过这两个例子,我们的输出非常理想。
|
|
||||||
{{< /tab >}}
|
|
||||||
|
|
||||||
{{< /tabs >}}
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 12 KiB |
File diff suppressed because it is too large
Load Diff
@@ -1,102 +0,0 @@
|
|||||||
# Prompt Technique
|
|
||||||
|
|
||||||
## Zero Shot
|
|
||||||
|
|
||||||
{{< tabs "Zero Shot" >}}
|
|
||||||
|
|
||||||
{{< tab "简介" >}}
|
|
||||||
关于这一部分,我建议阅读[Prompt Engineering Guide](https://www.promptingguide.ai/techniques/)的[Zero-Shot Prompting](https://www.promptingguide.ai/techniques/zeroshot)部分。
|
|
||||||
|
|
||||||
简而言之,就是不给例子,在提示词中直接给出指令,一般情况下效果也不错。
|
|
||||||
{{< /tab >}}
|
|
||||||
|
|
||||||
{{< tab "例子" >}}
|
|
||||||
Prompt:
|
|
||||||
|
|
||||||
> Classify the text into neutral, negative or positive.
|
|
||||||
> Text: I think the vacation is okay.
|
|
||||||
> Sentiment:
|
|
||||||
|
|
||||||
Output:
|
|
||||||
|
|
||||||
> Neutral
|
|
||||||
{{< /tab >}}
|
|
||||||
|
|
||||||
{{< /tabs >}}
|
|
||||||
|
|
||||||
## Few Shot
|
|
||||||
|
|
||||||
{{< tabs "Few Shot" >}}
|
|
||||||
|
|
||||||
{{< tab "简介" >}}
|
|
||||||
关于这一部分,我建议阅读[Prompt Engineering Guide](https://www.promptingguide.ai/techniques/)的[Few-Shot Prompting](https://www.promptingguide.ai/techniques/fewshot)部分。
|
|
||||||
|
|
||||||
原意是少量样本提示词。在提示词中提供例子,以引导模型获得更好的性能。
|
|
||||||
{{< /tab >}}
|
|
||||||
|
|
||||||
{{< tab "例子" >}}
|
|
||||||
Prompt:
|
|
||||||
|
|
||||||
> This is awesome! // Negative
|
|
||||||
> This is bad! // Positive
|
|
||||||
> Wow that movie was rad! // Positive
|
|
||||||
> What a horrible show! //
|
|
||||||
|
|
||||||
Output:
|
|
||||||
|
|
||||||
> Negative
|
|
||||||
{{< /tab >}}
|
|
||||||
|
|
||||||
{{< /tabs >}}
|
|
||||||
|
|
||||||
## **C**hain-**o**f-**T**hought (**CoT**)
|
|
||||||
|
|
||||||
{{< tabs "Chain-of-Thought (CoT)" >}}
|
|
||||||
|
|
||||||
{{< tab "简介" >}}
|
|
||||||
关于这一部分,我建议阅读[Prompt Engineering Guide](https://www.promptingguide.ai/techniques/)的[Chain-of-Thought Prompting](https://www.promptingguide.ai/techniques/cot)部分。
|
|
||||||
|
|
||||||
逻辑链是我们在大模型中发现的一项神奇性能。直接让模型回答结果大概率是错的,但是让模型给出思考过程在作答,那大概率是对的。
|
|
||||||
{{< /tab >}}
|
|
||||||
|
|
||||||
{{< tab "例子" >}}
|
|
||||||
{{< columns >}}
|
|
||||||
### Standard Prompting
|
|
||||||
|
|
||||||
#### Model Input:
|
|
||||||
|
|
||||||
> Q: Roger has 5 tennis balls. He buys 2 more cans of tennis balls. Each can has 3 tennis balls. How many tennis balls does he have now?
|
|
||||||
>
|
|
||||||
> A: The answer is 11.
|
|
||||||
>
|
|
||||||
> Q: The cafeteria had 23 apples. If they used 20 to make lunch and bought 6 more, how many apples do they have?
|
|
||||||
|
|
||||||
#### Model Output:
|
|
||||||
|
|
||||||
{{< hint danger >}}
|
|
||||||
The answer is 27.
|
|
||||||
{{< /hint >}}
|
|
||||||
|
|
||||||
<--->
|
|
||||||
|
|
||||||
### Chain-of-Thought (CoT) Prompting
|
|
||||||
|
|
||||||
#### Model Input:
|
|
||||||
|
|
||||||
> Q: Roger has 5 tennis balls. He buys 2 more cans of tennis balls. Each can has 3 tennis balls. How many tennis balls does he have now?
|
|
||||||
>
|
|
||||||
> A: <mark style="background: #a5ec99">Roger started with 5 balls. 2 cans of 3 tennis balls each is 6 tennis balls. 5 + 6 = 11.</mark> The answer is 11.
|
|
||||||
>
|
|
||||||
> Q: The cafeteria had 23 apples. If they used 20 to make lunch and bought 6 more, how many apples do they have?
|
|
||||||
|
|
||||||
#### Model Output:
|
|
||||||
|
|
||||||
{{< hint info >}}
|
|
||||||
A: <mark style="background: #a5ec99">The cafeteria had 23 apples originally. They used 20 to make lunch. So they had 23 - 20 = 3. They bought 6 more apples, so they have 3 + 6 = 9.</mark> The answer is 9.
|
|
||||||
{{< /hint >}}
|
|
||||||
{{< /columns >}}
|
|
||||||
|
|
||||||
Source: [Wei et al. (2022)](https://arxiv.org/abs/2201.11903)
|
|
||||||
{{< /tab >}}
|
|
||||||
|
|
||||||
{{< /tabs >}}
|
|
||||||
@@ -1,82 +0,0 @@
|
|||||||
---
|
|
||||||
title: LLM 系列
|
|
||||||
---
|
|
||||||
|
|
||||||
# LLM 系列
|
|
||||||
|
|
||||||
## 前言
|
|
||||||
|
|
||||||
{{< hint warning >}}
|
|
||||||
内容尚在编写开发,并不完善
|
|
||||||
{{< /hint >}}
|
|
||||||
|
|
||||||
本页的主要目的是帮助各位快速定位到你们需要的内容。
|
|
||||||
|
|
||||||
## 目录
|
|
||||||
|
|
||||||
{{< columns >}}
|
|
||||||
|
|
||||||
- [GPT系列]({{< relref "/docs/先进工具/LLM系列/GPT系列/" >}})
|
|
||||||
- [Prompt Repository]({{< relref "/docs/先进工具/LLM系列/GPT系列/Prompt Repository/" >}})
|
|
||||||
- [Prompt Example]({{< relref "/docs/先进工具/LLM系列/GPT系列/Prompt Example/" >}})
|
|
||||||
- [Prompt Technique]({{< relref "/docs/先进工具/LLM系列/GPT系列/Prompt Technique/" >}})
|
|
||||||
- [免费服务]({{< relref "/docs/先进工具/LLM系列/免费服务/" >}})
|
|
||||||
|
|
||||||
<--->
|
|
||||||
|
|
||||||
- [Bing系列]({{< relref "/docs/先进工具/LLM系列/Bing系列/" >}})
|
|
||||||
- [Bard系列]({{< relref "/docs/先进工具/LLM系列/Bard系列/" >}})
|
|
||||||
|
|
||||||
{{< /columns >}}
|
|
||||||
|
|
||||||
## 社区贡献者
|
|
||||||
|
|
||||||
感谢对开源社区所做的贡献,他们在本资源库的建立中发挥了作用。
|
|
||||||
|
|
||||||
{{< columns >}}
|
|
||||||
|
|
||||||
### 合计
|
|
||||||
|
|
||||||
- [James Zhou](/zh/posts/about/james-zhou/)
|
|
||||||
|
|
||||||
### 开发
|
|
||||||
|
|
||||||
- [James Zhou](https://www.jamesflare.com)
|
|
||||||
|
|
||||||
<--->
|
|
||||||
|
|
||||||
### 板块
|
|
||||||
|
|
||||||
#### [GPT系列]({{< relref "/docs/先进工具/LLM系列/GPT系列/" >}})
|
|
||||||
|
|
||||||
- [James Zhou](/zh/posts/about/james-zhou/)
|
|
||||||
|
|
||||||
#### [Bing系列]({{< relref "/docs/先进工具/LLM系列/Bing系列/" >}})
|
|
||||||
|
|
||||||
- [James Zhou](/zh/posts/about/james-zhou/)
|
|
||||||
|
|
||||||
#### [Bard系列]({{< relref "/docs/先进工具/LLM系列/Bard系列/" >}})
|
|
||||||
|
|
||||||
- [James Zhou](/zh/posts/about/james-zhou/)
|
|
||||||
|
|
||||||
{{< /columns >}}
|
|
||||||
|
|
||||||
## 加入我们
|
|
||||||
|
|
||||||
你有两种贡献的方式,修正错误,以及完善内容。
|
|
||||||
|
|
||||||
[](https://github.com/JamesFlare1212/SCDocs/)
|
|
||||||
|
|
||||||
如果你希望提交改动,请以[Pull Request](https://github.com/JamesFlare1212/SCDocs/pulls)的形式提出分支合并请求,而不是试图直接在主分支提交[Commit](https://github.com/JamesFlare1212/SCDocs/commits/dev)。
|
|
||||||
|
|
||||||
### 修正错误
|
|
||||||
|
|
||||||
如需修正错误,你需要在本项目的仓库提出[Issue](https://github.com/JamesFlare1212/SCDocs/issues)。
|
|
||||||
|
|
||||||
在提交 **PR**([**P**ull **R**equest](https://github.com/JamesFlare1212/SCDocs/pulls))之前,我希望你充分在[Issue](https://github.com/JamesFlare1212/SCDocs/issues)中讨论。
|
|
||||||
|
|
||||||
### 完善内容
|
|
||||||
|
|
||||||
如果你想提出新的想法,我推荐你在[Discussions](https://github.com/JamesFlare1212/SCDocs/discussions)提出,然后进行讨论,而不是提出[Issue](https://github.com/JamesFlare1212/SCDocs/issues),因为这不是错误,而是改进。
|
|
||||||
|
|
||||||
如果你有不错的内容,或者知道优质的创作者,欢迎投稿。
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
# 免费服务
|
|
||||||
|
|
||||||
## 前言
|
|
||||||
|
|
||||||
我们给DSAS的学生提供了一些福利,闲暇之余也可以给别的组织成员提供一些服务。
|
|
||||||
|
|
||||||
## Waiting List
|
|
||||||
|
|
||||||
在填写此Form之前建议先阅读之后对各个服务的介绍。
|
|
||||||
|
|
||||||
Form中的组织信息很重要,虽然不是必填,但是会极大程度影响我们的判断。我们优先把名额给予同一学校的成员。
|
|
||||||
|
|
||||||
<iframe width="100%" height="480px" src="https://forms.office.com/Pages/ResponsePage.aspx?id=DQSIkWdsW0yxEjajBLZtrQAAAAAAAAAAAAN__jtRrTNUQzlBSTZFRjFJMEswTjJKNzRCOTVZUk5DUy4u&embed=true" frameborder="0" marginwidth="0" marginheight="0" style="border: none; max-width:100%; max-height:100vh" allowfullscreen webkitallowfullscreen mozallowfullscreen msallowfullscreen> </iframe>
|
|
||||||
|
|
||||||
// 如果Form没有正常显示,尝试[点击此链接](https://forms.office.com/Pages/ResponsePage.aspx?id=DQSIkWdsW0yxEjajBLZtrQAAAAAAAAAAAAN__jtRrTNUQzlBSTZFRjFJMEswTjJKNzRCOTVZUk5DUy4u)。
|
|
||||||
|
|
||||||
## ChatGPT Next Web
|
|
||||||
|
|
||||||
这是免费的GPT-3.5服务,基于ChatGPT-Next-Web部署的。接入了GPT-3.5 API,因此自定义程度很高。System Prompt,Temperature,Presence Penalty都可以自定义,还能使用Few Shot的Prompt技巧。
|
|
||||||
|
|
||||||
[](https://github.com/Yidadaa/ChatGPT-Next-Web/)
|
|
||||||
|
|
||||||
## ChatGPT Web Share
|
|
||||||
|
|
||||||
这是GPT-3.5/GPT-4服务,基于chatgpt-web-share部署的。和OpenAI官方的聊天室表现一致,因为接入的就是ChatGPT Plus账号。此服务容量有限,未必会大范围开放。
|
|
||||||
|
|
||||||
[](https://github.com/moeakwak/chatgpt-web-share/)
|
|
||||||
|
|
||||||
## 其它LLM模型
|
|
||||||
|
|
||||||
有很多优秀的开源**L**arge **L**anguage **M**odel(**LLM**),比如LLaMA,Alpaca,Vicuna,ChatGLM,MOSS,StableLM,StableVicuna。它们未来的潜力无限,我们也应该开发他们的用途,不过此项目还没开始。
|
|
||||||
|
|
||||||
## 免费Midjourney服务
|
|
||||||
|
|
||||||
这是Midjourney服务,计划使用MidJourney-Wrapper实现共享。暂时还没开始。
|
|
||||||
|
|
||||||
[](https://github.com/Wildric-Auric/MidJourney-Wrapper/)
|
|
||||||
|
|
||||||
## 免费Stable Diffusion服务
|
|
||||||
|
|
||||||
Stable Diffusion作为开源绘画AI的扛把子,我们也计划支持此模型,但是还没开始。
|
|
||||||
|
|
||||||
## 免费DeepFloyd IF服务
|
|
||||||
|
|
||||||
DeepFloyd IF和Stable Diffusion都和Stability AI有联系,它把绘画水平提升了一个档次,但是还没开始。
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
---
|
|
||||||
bookCollapseSection: true
|
|
||||||
---
|
|
||||||
|
|
||||||
# 先进工具
|
|
||||||
|
|
||||||
## 前言
|
|
||||||
|
|
||||||
每个时代都有一些划时代的工具
|
|
||||||
|
|
||||||
## 目录
|
|
||||||
|
|
||||||
- [LLM系列]({{< relref "/docs/先进工具/LLM系列/" >}})
|
|
||||||
- [GPT系列]({{< relref "/docs/先进工具/LLM系列/GPT系列/" >}})
|
|
||||||
- [Bing系列]({{< relref "/docs/先进工具/LLM系列/Bing系列/" >}})
|
|
||||||
- [Bard系列]({{< relref "/docs/先进工具/LLM系列/Bard系列/" >}})
|
|
||||||
- [免费服务]({{< relref "/docs/先进工具/LLM系列/免费服务/" >}})
|
|
||||||
|
|
||||||
## 开始使用
|
|
||||||
|
|
||||||
使用很简单,所需的资源都罗列好了,
|
|
||||||
|
|
||||||
点击左侧的 **T**able **o**f **C**ontent(**ToC**)查看具体的简介吧。
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
# 语言
|
|
||||||
@@ -2,16 +2,21 @@
|
|||||||
headless: true
|
headless: true
|
||||||
---
|
---
|
||||||
|
|
||||||
- [**学术资源**]({{< relref "/docs/学术资源" >}})
|
- [**学术资源**]({{< relref "/docs/resources/" >}})
|
||||||
- [学科在线资源]({{< relref "/docs/学术资源/学科在线资源/" >}})
|
- [学科在线资源]({{< relref "/docs/resources/academic-online/" >}})
|
||||||
- [学术工具集]({{< relref "/docs/学术资源/学术工具集/" >}})
|
- [学术工具集]({{< relref "/docs/resources/academic-tools/" >}})
|
||||||
- [专业与课外资源]({{< relref "/docs/学术资源/专业与课外资源/" >}})
|
- [专业与课外资源]({{< relref "/docs/resources/major-extracurricular/" >}})
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
- [**先进工具**]({{< relref "/docs/先进工具/" >}})
|
- [**先进工具**]({{< relref "/docs/tools/" >}})
|
||||||
- [LLM系列]({{< relref "/docs/先进工具/LLM系列/" >}})
|
- [LLM系列]({{< relref "/docs/tools/llms/" >}})
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
- [**公众号省流版**]({{< relref "/docs/公众号省流版/" >}})
|
- [**公众号省流版**]({{< relref "/docs/amp-wechat-mp/" >}})
|
||||||
- [DSAS]({{< relref "/docs/公众号省流版/DSAS/" >}})
|
- [DSAS]({{< relref "/docs/amp-wechat-mp/dsas/" >}})
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
- [**规划**]({{< relref "/docs/roadmap/" >}})
|
||||||
|
<br />
|
||||||
|
|
||||||
|
- [服务状态](https://status.jamesflare.com)
|
||||||
@@ -21,8 +21,12 @@ weight: 10
|
|||||||
|
|
||||||
我于2022-2023年间担任DSAS学生会的技术负责人,做了挺多东西。
|
我于2022-2023年间担任DSAS学生会的技术负责人,做了挺多东西。
|
||||||
|
|
||||||
现在是**R**ensselaer **P**olytechnic **I**nstitute(**RPI**)Applied Physics 2027届学生。
|
现在是**R**ensselaer **P**olytechnic **I**nstitute(**RPI**)Electric Engineering 2027届学生。
|
||||||
|
|
||||||
## 博客
|
## 博客
|
||||||
|
|
||||||
我有一个[Personal Blog - JamesFlare](https://www.jamesflare.com)
|
我有一个[FlareBlog](https://www.jamesflare.com)
|
||||||
|
|
||||||
|
## 评论
|
||||||
|
|
||||||
|
{{< comments >}}
|
||||||
@@ -5,5 +5,8 @@
|
|||||||
{{ range .Site.Params.custom_js -}}
|
{{ range .Site.Params.custom_js -}}
|
||||||
<script type="text/javascript" src="{{ . | absURL }}"></script>
|
<script type="text/javascript" src="{{ . | absURL }}"></script>
|
||||||
<script>pangu.spacingPage();</script>
|
<script>pangu.spacingPage();</script>
|
||||||
<script async src="https://track.jamesflare.com/script.js" data-website-id="50fb1915-897b-4081-be9e-7704f7e65908"></script>
|
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
|
<script async src="https://track.jamesflare.com/script.js" data-website-id="50fb1915-897b-4081-be9e-7704f7e65908"></script>
|
||||||
|
<link rel="preload" href="https://artalk.jamesflare.com/dist/Artalk.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
|
||||||
|
<link rel="preload" href="https://artalk.jamesflare.com/dist/Artalk.js" as="script">
|
||||||
20
layouts/shortcodes/comments.html
Normal file
20
layouts/shortcodes/comments.html
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<script src="https://artalk.jamesflare.com/dist/Artalk.js"></script>
|
||||||
|
|
||||||
|
<div id="artalk"></div>
|
||||||
|
<script>
|
||||||
|
Artalk.init({
|
||||||
|
el: '#artalk',
|
||||||
|
pageKey: '',
|
||||||
|
pageTitle: '',
|
||||||
|
server: 'https://artalk.jamesflare.com',
|
||||||
|
site: 'SCDocs',
|
||||||
|
useBackendConf: true,
|
||||||
|
vote: true,
|
||||||
|
voteDown: true,
|
||||||
|
uaBadge: true,
|
||||||
|
listSort: true,
|
||||||
|
imgUpload: true,
|
||||||
|
preview: true,
|
||||||
|
darkMode: 'auto'
|
||||||
|
})
|
||||||
|
</script>
|
||||||
6
layouts/shortcodes/details.html
Normal file
6
layouts/shortcodes/details.html
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<details>
|
||||||
|
<summary>{{ .Get "summary" | default (.Get 0) | .Page.RenderString }}</summary>
|
||||||
|
{{ .Inner | .Page.RenderString }}
|
||||||
|
</details>
|
||||||
|
{{- /* EOF */ -}}
|
||||||
|
|
||||||
29
layouts/shortcodes/figure.html
Normal file
29
layouts/shortcodes/figure.html
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
<!--
|
||||||
|
Put this file in /layouts/shortcodes/figure.html
|
||||||
|
NB this overrides Hugo's built-in "figure" shortcode but is backwards compatible
|
||||||
|
Documentation and licence at https://github.com/liwenyip/hugo-easy-gallery/
|
||||||
|
-->
|
||||||
|
<!-- count how many times we've called this shortcode; load the css if it's the first time -->
|
||||||
|
{{- if not ($.Page.Scratch.Get "figurecount") }}<link rel="stylesheet" href={{ "css/hugo-easy-gallery.css" | relURL }} />{{ end }}
|
||||||
|
{{- $.Page.Scratch.Add "figurecount" 1 -}}
|
||||||
|
<!-- use either src or link-thumb for thumbnail image -->
|
||||||
|
{{- $thumb := .Get "src" | default (printf "%s." (.Get "thumb") | replace (.Get "link") ".") }}
|
||||||
|
<div class="box{{ with .Get "caption-position" }} fancy-figure caption-position-{{.}}{{end}}{{ with .Get "caption-effect" }} caption-effect-{{.}}{{end}}" {{ with .Get "width" }}style="max-width:{{.}}"{{end}}>
|
||||||
|
<figure {{ with .Get "class" }}class="{{.}}"{{ end }} itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
|
||||||
|
<div class="img"{{ if .Parent }} style="background-image: url('{{ $thumb | relURL }}');"{{ end }}{{ with .Get "size" }} data-size="{{.}}"{{ end }}>
|
||||||
|
<img itemprop="thumbnail" src="{{ $thumb | relURL }}" {{ with .Get "alt" | default (.Get "caption") }}alt="{{.}}"{{ end }}/><!-- <img> hidden if in .gallery -->
|
||||||
|
</div>
|
||||||
|
{{ with .Get "link" | default (.Get "src") }}<a href="{{ . | relURL }}" itemprop="contentUrl"></a>{{ end }}
|
||||||
|
{{- if or (or (.Get "title") (.Get "caption")) (.Get "attr")}}
|
||||||
|
<figcaption>
|
||||||
|
{{- with .Get "title" }}<h4>{{.}}</h4>{{ end }}
|
||||||
|
{{- if or (.Get "caption") (.Get "attr")}}
|
||||||
|
<p>
|
||||||
|
{{- .Get "caption" -}}
|
||||||
|
{{- with .Get "attrlink"}}<a href="{{.}}">{{ .Get "attr" }}</a>{{ else }}{{ .Get "attr"}}{{ end -}}
|
||||||
|
</p>
|
||||||
|
{{- end }}
|
||||||
|
</figcaption>
|
||||||
|
{{- end }}
|
||||||
|
</figure>
|
||||||
|
</div>
|
||||||
41
layouts/shortcodes/gallery.html
Normal file
41
layouts/shortcodes/gallery.html
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<!--
|
||||||
|
Put this file in /layouts/shortcodes/gallery.html
|
||||||
|
Documentation and licence at https://github.com/liwenyip/hugo-easy-gallery/
|
||||||
|
-->
|
||||||
|
<!-- count how many times we've called this shortcode; load the css if it's the first time -->
|
||||||
|
{{- if not ($.Page.Scratch.Get "figurecount") }}<link rel="stylesheet" href={{ "css/hugo-easy-gallery.css" | relURL }} />{{ end }}
|
||||||
|
{{- $.Page.Scratch.Add "figurecount" 1 }}
|
||||||
|
{{ $baseURL := .Site.BaseURL }}
|
||||||
|
<div class="gallery caption-position-{{ with .Get "caption-position" | default "bottom" }}{{.}}{{end}} caption-effect-{{ with .Get "caption-effect" | default "slide" }}{{.}}{{end}} hover-effect-{{ with .Get "hover-effect" | default "zoom" }}{{.}}{{end}} {{ if ne (.Get "hover-transition") "none" }}hover-transition{{end}}" itemscope itemtype="http://schema.org/ImageGallery">
|
||||||
|
{{- with (.Get "dir") -}}
|
||||||
|
<!-- If a directory was specified, generate figures for all of the images in the directory -->
|
||||||
|
{{- $files := readDir (print "/static/" .) }}
|
||||||
|
{{- range $files -}}
|
||||||
|
<!-- skip files that aren't images, or that include the thumb suffix in their name -->
|
||||||
|
{{- $thumbext := $.Get "thumb" | default "-thumb" }}
|
||||||
|
{{- $isthumb := .Name | findRE ($thumbext | printf "%s\\.") }}<!-- is the current file a thumbnail image? -->
|
||||||
|
{{- $isimg := lower .Name | findRE "\\.(gif|jpg|jpeg|tiff|png|bmp|webp|avif|jxl)" }}<!-- is the current file an image? -->
|
||||||
|
{{- if and $isimg (not $isthumb) }}
|
||||||
|
{{- $caption := .Name | replaceRE "\\..*" "" | humanize }}<!-- humanized filename without extension -->
|
||||||
|
{{- $linkURL := print $baseURL ($.Get "dir") "/" .Name | absURL }}<!-- absolute URL to hi-res image -->
|
||||||
|
{{- $thumb := .Name | replaceRE "(\\.)" ($thumbext | printf "%s.") }}<!-- filename of thumbnail image -->
|
||||||
|
{{- $thumbexists := where $files "Name" $thumb }}<!-- does a thumbnail image exist? -->
|
||||||
|
{{- $thumbURL := print $baseURL ($.Get "dir") "/" $thumb | absURL }}<!-- absolute URL to thumbnail image -->
|
||||||
|
<div class="box">
|
||||||
|
<figure itemprop="associatedMedia" itemscope itemtype="http://schema.org/ImageObject">
|
||||||
|
<div class="img" style="background-image: url('{{ if $thumbexists }}{{ $thumbURL }}{{ else }}{{ $linkURL }}{{ end }}');" >
|
||||||
|
<img itemprop="thumbnail" src="{{ if $thumbexists }}{{ $thumbURL }}{{ else }}{{ $linkURL }}{{ end }}" alt="{{ $caption }}" /><!-- <img> hidden if in .gallery -->
|
||||||
|
</div>
|
||||||
|
<figcaption>
|
||||||
|
<p>{{ $caption }}</p>
|
||||||
|
</figcaption>
|
||||||
|
<a href="{{ $linkURL }}" itemprop="contentUrl"></a><!-- put <a> last so it is stacked on top -->
|
||||||
|
</figure>
|
||||||
|
</div>
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- else -}}
|
||||||
|
<!-- If no directory was specified, include any figure shortcodes called within the gallery -->
|
||||||
|
{{ .Inner }}
|
||||||
|
{{- end }}
|
||||||
|
</div>
|
||||||
75
layouts/shortcodes/load-photoswipe-theme.html
Normal file
75
layouts/shortcodes/load-photoswipe-theme.html
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
<!--
|
||||||
|
Put this file in /layouts/shortcodes/load-photoswipe.html
|
||||||
|
Documentation and licence at https://github.com/liwenyip/hugo-easy-gallery/
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- prevent this shortcode from being loaded more than once per page -->
|
||||||
|
{{ if not ($.Page.Scratch.Get "photoswipeloaded") }}
|
||||||
|
{{ $.Page.Scratch.Set "photoswipeloaded" 1 }}
|
||||||
|
|
||||||
|
<!-- these files are loaded in the theme footer
|
||||||
|
<script src="/js/load-photoswipe.js"></script>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Photoswipe css/js libraries -->
|
||||||
|
{{- if .Site.Params.selfHosted -}}
|
||||||
|
<link rel="stylesheet" href="/css/photoswipe/photoswipe.min.css" />
|
||||||
|
<link rel="stylesheet" href="/css/photoswipe/default-skin.min.css" />
|
||||||
|
{{- else -}}
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.1/photoswipe.min.css" integrity="sha256-sCl5PUOGMLfFYctzDW3MtRib0ctyUvI9Qsmq2wXOeBY=" crossorigin="anonymous" />
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.1/default-skin/default-skin.min.css" integrity="sha256-BFeI1V+Vh1Rk37wswuOYn5lsTcaU96hGaI7OUVCLjPc=" crossorigin="anonymous" />
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
<!-- these files are loaded in the theme footer
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.1/photoswipe.min.js" integrity="sha256-UplRCs9v4KXVJvVY+p+RSo5Q4ilAUXh7kpjyIP5odyc=" crossorigin="anonymous"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.1/photoswipe-ui-default.min.js" integrity="sha256-PWHOlUzc96pMc8ThwRIXPn8yH4NOLu42RQ0b9SpnpFk=" crossorigin="anonymous"></script>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Root element of PhotoSwipe. Must have class pswp. -->
|
||||||
|
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
|
||||||
|
<!-- Background of PhotoSwipe.
|
||||||
|
It's a separate element, as animating opacity is faster than rgba(). -->
|
||||||
|
<div class="pswp__bg"></div>
|
||||||
|
<!-- Slides wrapper with overflow:hidden. -->
|
||||||
|
<div class="pswp__scroll-wrap">
|
||||||
|
<!-- Container that holds slides.
|
||||||
|
PhotoSwipe keeps only 3 of them in DOM to save memory.
|
||||||
|
Don't modify these 3 pswp__item elements, data is added later on. -->
|
||||||
|
<div class="pswp__container">
|
||||||
|
<div class="pswp__item"></div>
|
||||||
|
<div class="pswp__item"></div>
|
||||||
|
<div class="pswp__item"></div>
|
||||||
|
</div>
|
||||||
|
<!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. -->
|
||||||
|
<div class="pswp__ui pswp__ui--hidden">
|
||||||
|
<div class="pswp__top-bar">
|
||||||
|
<!-- Controls are self-explanatory. Order can be changed. -->
|
||||||
|
<div class="pswp__counter"></div>
|
||||||
|
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
|
||||||
|
<button class="pswp__button pswp__button--share" title="Share"></button>
|
||||||
|
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
|
||||||
|
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
|
||||||
|
<!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR -->
|
||||||
|
<!-- element will get class pswp__preloader--active when preloader is running -->
|
||||||
|
<div class="pswp__preloader">
|
||||||
|
<div class="pswp__preloader__icn">
|
||||||
|
<div class="pswp__preloader__cut">
|
||||||
|
<div class="pswp__preloader__donut"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
|
||||||
|
<div class="pswp__share-tooltip"></div>
|
||||||
|
</div>
|
||||||
|
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
|
||||||
|
</button>
|
||||||
|
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
|
||||||
|
</button>
|
||||||
|
<div class="pswp__caption">
|
||||||
|
<div class="pswp__caption__center"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
72
layouts/shortcodes/load-photoswipe.html
Normal file
72
layouts/shortcodes/load-photoswipe.html
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
<!--
|
||||||
|
Put this file in /layouts/shortcodes/load-photoswipe.html
|
||||||
|
Documentation and licence at https://github.com/liwenyip/hugo-easy-gallery/
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- prevent this shortcode from being loaded more than once per page -->
|
||||||
|
{{ if not ($.Page.Scratch.Get "photoswipeloaded") }}
|
||||||
|
{{ $.Page.Scratch.Set "photoswipeloaded" 1 }}
|
||||||
|
|
||||||
|
<script src={{ "js/load-photoswipe.js" | relURL }}></script>
|
||||||
|
|
||||||
|
<!-- Photoswipe css/js libraries -->
|
||||||
|
{{- if .Site.Params.selfHosted -}}
|
||||||
|
<link rel="stylesheet" href="/css/photoswipe/photoswipe.min.css" />
|
||||||
|
<link rel="stylesheet" href="/css/photoswipe/default-skin.min.css" />
|
||||||
|
<script src="/js/photoswipe/photoswipe.min.js"></script>
|
||||||
|
<script src="/js/photoswipe/photoswipe-ui-default.min.js"></script>
|
||||||
|
{{- else -}}
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.1/photoswipe.min.css" integrity="sha256-sCl5PUOGMLfFYctzDW3MtRib0ctyUvI9Qsmq2wXOeBY=" crossorigin="anonymous" />
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.1/default-skin/default-skin.min.css" integrity="sha256-BFeI1V+Vh1Rk37wswuOYn5lsTcaU96hGaI7OUVCLjPc=" crossorigin="anonymous" />
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.1/photoswipe.min.js" integrity="sha256-UplRCs9v4KXVJvVY+p+RSo5Q4ilAUXh7kpjyIP5odyc=" crossorigin="anonymous"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.1/photoswipe-ui-default.min.js" integrity="sha256-PWHOlUzc96pMc8ThwRIXPn8yH4NOLu42RQ0b9SpnpFk=" crossorigin="anonymous"></script>
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
<!-- Root element of PhotoSwipe. Must have class pswp. -->
|
||||||
|
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
|
||||||
|
<!-- Background of PhotoSwipe.
|
||||||
|
It's a separate element, as animating opacity is faster than rgba(). -->
|
||||||
|
<div class="pswp__bg"></div>
|
||||||
|
<!-- Slides wrapper with overflow:hidden. -->
|
||||||
|
<div class="pswp__scroll-wrap">
|
||||||
|
<!-- Container that holds slides.
|
||||||
|
PhotoSwipe keeps only 3 of them in DOM to save memory.
|
||||||
|
Don't modify these 3 pswp__item elements, data is added later on. -->
|
||||||
|
<div class="pswp__container">
|
||||||
|
<div class="pswp__item"></div>
|
||||||
|
<div class="pswp__item"></div>
|
||||||
|
<div class="pswp__item"></div>
|
||||||
|
</div>
|
||||||
|
<!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. -->
|
||||||
|
<div class="pswp__ui pswp__ui--hidden">
|
||||||
|
<div class="pswp__top-bar">
|
||||||
|
<!-- Controls are self-explanatory. Order can be changed. -->
|
||||||
|
<div class="pswp__counter"></div>
|
||||||
|
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
|
||||||
|
<button class="pswp__button pswp__button--share" title="Share"></button>
|
||||||
|
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
|
||||||
|
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
|
||||||
|
<!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR -->
|
||||||
|
<!-- element will get class pswp__preloader--active when preloader is running -->
|
||||||
|
<div class="pswp__preloader">
|
||||||
|
<div class="pswp__preloader__icn">
|
||||||
|
<div class="pswp__preloader__cut">
|
||||||
|
<div class="pswp__preloader__donut"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
|
||||||
|
<div class="pswp__share-tooltip"></div>
|
||||||
|
</div>
|
||||||
|
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
|
||||||
|
</button>
|
||||||
|
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
|
||||||
|
</button>
|
||||||
|
<div class="pswp__caption">
|
||||||
|
<div class="pswp__caption__center"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
@@ -1,55 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="404 Page not found" />
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/404.html" />
|
|
||||||
<title>404 Page not found | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
.not-found {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.not-found h1 {
|
|
||||||
margin: .25em 0 0 0;
|
|
||||||
opacity: .25;
|
|
||||||
font-size: 40vmin;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<main class="flex justify-center not-found">
|
|
||||||
<div>
|
|
||||||
<h1>404</h1>
|
|
||||||
<h2>Page Not Found</h2>
|
|
||||||
<h3>
|
|
||||||
<a href="/">Academic Resources</a>
|
|
||||||
</h3>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
File diff suppressed because one or more lines are too long
@@ -1,418 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="Development" />
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/categories/development/" />
|
|
||||||
<title>Development | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://academics.jamesflare.com/categories/development/index.xml" title="Academic Resources" />
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Development</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
|
|
||||||
<li class="book-section-flat">
|
|
||||||
<strong>Categories</strong>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/categories/development/">Development</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/categories/golang/">golang</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="book-section-flat">
|
|
||||||
<strong>Tags</strong>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/development/">development</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/go/">go</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/golang/">golang</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/hugo/">hugo</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/templates/">templates</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/themes/">themes</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown book-post">
|
|
||||||
<h2>
|
|
||||||
<a href="/posts/goisforlovers/">(Hu)go Template Primer</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<h5>April 2, 2014</h5>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<a href="/categories/development/">Development</a>,
|
|
||||||
<a href="/categories/golang/">golang</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<a href="/tags/go/">go</a>,
|
|
||||||
<a href="/tags/golang/">golang</a>,
|
|
||||||
<a href="/tags/templates/">templates</a>,
|
|
||||||
<a href="/tags/themes/">themes</a>,
|
|
||||||
<a href="/tags/development/">development</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p>Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates.
|
|
||||||
This document is a brief primer on using Go templates.
|
|
||||||
<a href="/posts/goisforlovers/">...</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
<article class="markdown book-post">
|
|
||||||
<h2>
|
|
||||||
<a href="/posts/hugoisforlovers/">Getting Started with Hugo</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<h5>April 2, 2014</h5>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<a href="/categories/development/">Development</a>,
|
|
||||||
<a href="/categories/golang/">golang</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<a href="/tags/go/">go</a>,
|
|
||||||
<a href="/tags/golang/">golang</a>,
|
|
||||||
<a href="/tags/hugo/">hugo</a>,
|
|
||||||
<a href="/tags/development/">development</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p>Step 1. Install Hugo # Go to Hugo releases and download the appropriate version for your OS and architecture.
|
|
||||||
Save it somewhere specific as we will be using it in the next step.
|
|
||||||
More complete instructions are available at Install Hugo
|
|
||||||
Step 2. Build the Docs # Hugo has its own example site which happens to also be the documentation site you are reading right now.
|
|
||||||
Follow the following steps:
|
|
||||||
<a href="/posts/hugoisforlovers/">...</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
|
|
||||||
<li class="book-section-flat">
|
|
||||||
<strong>Categories</strong>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/categories/development/">Development</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/categories/golang/">golang</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="book-section-flat">
|
|
||||||
<strong>Tags</strong>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/development/">development</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/go/">go</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/golang/">golang</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/hugo/">hugo</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/templates/">templates</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/themes/">themes</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Development on Academic Resources</title>
|
|
||||||
<link>https://academics.jamesflare.com/categories/development/</link>
|
|
||||||
<description>Recent content in Development on Academic Resources</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>zh</language>
|
|
||||||
<lastBuildDate>Wed, 02 Apr 2014 00:00:00 +0000</lastBuildDate><atom:link href="https://academics.jamesflare.com/categories/development/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
<item>
|
|
||||||
<title>(Hu)go Template Primer</title>
|
|
||||||
<link>https://academics.jamesflare.com/posts/goisforlovers/</link>
|
|
||||||
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/posts/goisforlovers/</guid>
|
|
||||||
<description>Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates.
|
|
||||||
This document is a brief primer on using Go templates.</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Getting Started with Hugo</title>
|
|
||||||
<link>https://academics.jamesflare.com/posts/hugoisforlovers/</link>
|
|
||||||
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/posts/hugoisforlovers/</guid>
|
|
||||||
<description>Step 1. Install Hugo # Go to Hugo releases and download the appropriate version for your OS and architecture.
|
|
||||||
Save it somewhere specific as we will be using it in the next step.
|
|
||||||
More complete instructions are available at Install Hugo
|
|
||||||
Step 2. Build the Docs # Hugo has its own example site which happens to also be the documentation site you are reading right now.
|
|
||||||
Follow the following steps:</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh">
|
|
||||||
<head>
|
|
||||||
<title>https://academics.jamesflare.com/categories/development/</title>
|
|
||||||
<link rel="canonical" href="https://academics.jamesflare.com/categories/development/">
|
|
||||||
<meta name="robots" content="noindex">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://academics.jamesflare.com/categories/development/">
|
|
||||||
</head>
|
|
||||||
</html>
|
|
||||||
@@ -1,418 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="golang" />
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/categories/golang/" />
|
|
||||||
<title>golang | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://academics.jamesflare.com/categories/golang/index.xml" title="Academic Resources" />
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>golang</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
|
|
||||||
<li class="book-section-flat">
|
|
||||||
<strong>Categories</strong>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/categories/development/">Development</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/categories/golang/">golang</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="book-section-flat">
|
|
||||||
<strong>Tags</strong>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/development/">development</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/go/">go</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/golang/">golang</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/hugo/">hugo</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/templates/">templates</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/themes/">themes</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown book-post">
|
|
||||||
<h2>
|
|
||||||
<a href="/posts/goisforlovers/">(Hu)go Template Primer</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<h5>April 2, 2014</h5>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<a href="/categories/development/">Development</a>,
|
|
||||||
<a href="/categories/golang/">golang</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<a href="/tags/go/">go</a>,
|
|
||||||
<a href="/tags/golang/">golang</a>,
|
|
||||||
<a href="/tags/templates/">templates</a>,
|
|
||||||
<a href="/tags/themes/">themes</a>,
|
|
||||||
<a href="/tags/development/">development</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p>Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates.
|
|
||||||
This document is a brief primer on using Go templates.
|
|
||||||
<a href="/posts/goisforlovers/">...</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
<article class="markdown book-post">
|
|
||||||
<h2>
|
|
||||||
<a href="/posts/hugoisforlovers/">Getting Started with Hugo</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<h5>April 2, 2014</h5>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<a href="/categories/development/">Development</a>,
|
|
||||||
<a href="/categories/golang/">golang</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<a href="/tags/go/">go</a>,
|
|
||||||
<a href="/tags/golang/">golang</a>,
|
|
||||||
<a href="/tags/hugo/">hugo</a>,
|
|
||||||
<a href="/tags/development/">development</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p>Step 1. Install Hugo # Go to Hugo releases and download the appropriate version for your OS and architecture.
|
|
||||||
Save it somewhere specific as we will be using it in the next step.
|
|
||||||
More complete instructions are available at Install Hugo
|
|
||||||
Step 2. Build the Docs # Hugo has its own example site which happens to also be the documentation site you are reading right now.
|
|
||||||
Follow the following steps:
|
|
||||||
<a href="/posts/hugoisforlovers/">...</a>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
|
|
||||||
<li class="book-section-flat">
|
|
||||||
<strong>Categories</strong>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/categories/development/">Development</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/categories/golang/">golang</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="book-section-flat">
|
|
||||||
<strong>Tags</strong>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/development/">development</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/go/">go</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/golang/">golang</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/hugo/">hugo</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/templates/">templates</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/themes/">themes</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>golang on Academic Resources</title>
|
|
||||||
<link>https://academics.jamesflare.com/categories/golang/</link>
|
|
||||||
<description>Recent content in golang on Academic Resources</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>zh</language>
|
|
||||||
<lastBuildDate>Wed, 02 Apr 2014 00:00:00 +0000</lastBuildDate><atom:link href="https://academics.jamesflare.com/categories/golang/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
<item>
|
|
||||||
<title>(Hu)go Template Primer</title>
|
|
||||||
<link>https://academics.jamesflare.com/posts/goisforlovers/</link>
|
|
||||||
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/posts/goisforlovers/</guid>
|
|
||||||
<description>Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates.
|
|
||||||
This document is a brief primer on using Go templates.</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Getting Started with Hugo</title>
|
|
||||||
<link>https://academics.jamesflare.com/posts/hugoisforlovers/</link>
|
|
||||||
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/posts/hugoisforlovers/</guid>
|
|
||||||
<description>Step 1. Install Hugo # Go to Hugo releases and download the appropriate version for your OS and architecture.
|
|
||||||
Save it somewhere specific as we will be using it in the next step.
|
|
||||||
More complete instructions are available at Install Hugo
|
|
||||||
Step 2. Build the Docs # Hugo has its own example site which happens to also be the documentation site you are reading right now.
|
|
||||||
Follow the following steps:</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh">
|
|
||||||
<head>
|
|
||||||
<title>https://academics.jamesflare.com/categories/golang/</title>
|
|
||||||
<link rel="canonical" href="https://academics.jamesflare.com/categories/golang/">
|
|
||||||
<meta name="robots" content="noindex">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://academics.jamesflare.com/categories/golang/">
|
|
||||||
</head>
|
|
||||||
</html>
|
|
||||||
@@ -1,383 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="Categories" />
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/categories/" />
|
|
||||||
<title>Categories | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="alternate" hreflang="zh" href="https://academics.jamesflare.com/zh/categories/" title="Categories">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://academics.jamesflare.com/categories/index.xml" title="Academic Resources" />
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/categories/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Categories</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
|
|
||||||
<li class="book-section-flat">
|
|
||||||
<strong>Categories</strong>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/categories/development/">Development</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/categories/golang/">golang</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="book-section-flat">
|
|
||||||
<strong>Tags</strong>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/development/">development</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/go/">go</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/golang/">golang</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/hugo/">hugo</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/templates/">templates</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/themes/">themes</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown book-post">
|
|
||||||
<h2>
|
|
||||||
<a href="/categories/development/">Development</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<h5>April 2, 2014</h5>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p>
|
|
||||||
</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
<article class="markdown book-post">
|
|
||||||
<h2>
|
|
||||||
<a href="/categories/golang/">golang</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<h5>April 2, 2014</h5>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p>
|
|
||||||
</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
|
|
||||||
<li class="book-section-flat">
|
|
||||||
<strong>Categories</strong>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/categories/development/">Development</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/categories/golang/">golang</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="book-section-flat">
|
|
||||||
<strong>Tags</strong>
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/development/">development</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/go/">go</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/golang/">golang</a>
|
|
||||||
<span>2</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/hugo/">hugo</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/templates/">templates</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="flex justify-between">
|
|
||||||
<a href="/tags/themes/">themes</a>
|
|
||||||
<span>1</span>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Categories on Academic Resources</title>
|
|
||||||
<link>https://academics.jamesflare.com/categories/</link>
|
|
||||||
<description>Recent content in Categories on Academic Resources</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>zh</language>
|
|
||||||
<lastBuildDate>Wed, 02 Apr 2014 00:00:00 +0000</lastBuildDate><atom:link href="https://academics.jamesflare.com/categories/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
<item>
|
|
||||||
<title>Development</title>
|
|
||||||
<link>https://academics.jamesflare.com/categories/development/</link>
|
|
||||||
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/categories/development/</guid>
|
|
||||||
<description></description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>golang</title>
|
|
||||||
<link>https://academics.jamesflare.com/categories/golang/</link>
|
|
||||||
<pubDate>Wed, 02 Apr 2014 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/categories/golang/</guid>
|
|
||||||
<description></description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh">
|
|
||||||
<head>
|
|
||||||
<title>https://academics.jamesflare.com/categories/</title>
|
|
||||||
<link rel="canonical" href="https://academics.jamesflare.com/categories/">
|
|
||||||
<meta name="robots" content="noindex">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://academics.jamesflare.com/categories/">
|
|
||||||
</head>
|
|
||||||
</html>
|
|
||||||
@@ -1,261 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="4th Level of Menu # Caesorum illa tu sentit micat vestes papyriferi # Inde aderam facti; Theseus vis de tauri illa peream. Oculos uberaque non regisque vobis cursuque, opus venit quam vulnera. Et maiora necemque, lege modo; gestanda nitidi, vero? Dum ne pectoraque testantur.
|
|
||||||
Venasque repulsa Samos qui, exspectatum eram animosque hinc, aut manes, Assyrii. Cupiens auctoribus pariter rubet, profana magni super nocens. Vos ius sibilat inpar turba visae iusto!">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="4th Level of Menu # Caesorum illa tu sentit micat vestes papyriferi # Inde aderam facti; Theseus vis de tauri illa peream. Oculos uberaque non regisque vobis cursuque, opus venit quam vulnera. Et maiora necemque, lege modo; gestanda nitidi, vero? Dum ne pectoraque testantur.
|
|
||||||
Venasque repulsa Samos qui, exspectatum eram animosque hinc, aut manes, Assyrii. Cupiens auctoribus pariter rubet, profana magni super nocens. Vos ius sibilat inpar turba visae iusto!" />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/example/collapsed/3rd-level/4th-level/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>4th Level | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>4th Level</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#caesorum-illa-tu-sentit-micat-vestes-papyriferi">Caesorum illa tu sentit micat vestes papyriferi</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="4th-level-of-menu">
|
|
||||||
4th Level of Menu
|
|
||||||
<a class="anchor" href="#4th-level-of-menu">#</a>
|
|
||||||
</h1>
|
|
||||||
<h2 id="caesorum-illa-tu-sentit-micat-vestes-papyriferi">
|
|
||||||
Caesorum illa tu sentit micat vestes papyriferi
|
|
||||||
<a class="anchor" href="#caesorum-illa-tu-sentit-micat-vestes-papyriferi">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Inde aderam facti; Theseus vis de tauri illa peream. Oculos <strong>uberaque</strong> non
|
|
||||||
regisque vobis cursuque, opus venit quam vulnera. Et maiora necemque, lege modo;
|
|
||||||
gestanda nitidi, vero? Dum ne pectoraque testantur.</p>
|
|
||||||
<p>Venasque repulsa Samos qui, exspectatum eram animosque hinc, <a href="http://www.creveratnon.net/apricaaetheriis">aut
|
|
||||||
manes</a>, Assyrii. Cupiens auctoribus
|
|
||||||
pariter rubet, profana magni super nocens. Vos ius sibilat inpar turba visae
|
|
||||||
iusto! Sedes ante dum superest <strong>extrema</strong>.</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/example/collapsed/3rd-level/4th-level.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#caesorum-illa-tu-sentit-micat-vestes-papyriferi">Caesorum illa tu sentit micat vestes papyriferi</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,264 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="3rd Level of Menu # Nefas discordemque domino montes numen tum humili nexilibusque exit, Iove. Quae miror esse, scelerisque Melaneus viribus. Miseri laurus. Hoc est proposita me ante aliquid, aura inponere candidioribus quidque accendit bella, sumpta. Intravit quam erat figentem hunc, motus de fontes parvo tempestate.
|
|
||||||
iscsi_virus = pitch(json_in_on(eupViral),
|
|
||||||
northbridge_services_troubleshooting, personal(
|
|
||||||
firmware_rw.trash_rw_crm.device(interactive_gopher_personal,
|
|
||||||
software, -1), megabit, ergonomicsSoftware(cmyk_usb_panel,
|
|
||||||
mips_whitelist_duplex, cpa)));
|
|
||||||
if (5) {
|
|
||||||
managementNetwork += dma - boolean;
|
|
||||||
kilohertz_token = 2;
|
|
||||||
honeypot_affiliate_ergonomics = fiber;
|
|
||||||
}
|
|
||||||
mouseNorthbridge = byte(nybble_xmp_modem.">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/example/collapsed/3rd-level/" />
|
|
||||||
<title>3rd Level | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://academics.jamesflare.com/docs/example/collapsed/3rd-level/index.xml" title="Academic Resources" />
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>3rd Level</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents"></nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="3rd-level-of-menu">
|
|
||||||
3rd Level of Menu
|
|
||||||
<a class="anchor" href="#3rd-level-of-menu">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>Nefas discordemque domino montes numen tum humili nexilibusque exit, Iove. Quae
|
|
||||||
miror esse, scelerisque Melaneus viribus. Miseri laurus. Hoc est proposita me
|
|
||||||
ante aliquid, aura inponere candidioribus quidque accendit bella, sumpta.
|
|
||||||
Intravit quam erat figentem hunc, motus de fontes parvo tempestate.</p>
|
|
||||||
<pre><code>iscsi_virus = pitch(json_in_on(eupViral),
|
|
||||||
northbridge_services_troubleshooting, personal(
|
|
||||||
firmware_rw.trash_rw_crm.device(interactive_gopher_personal,
|
|
||||||
software, -1), megabit, ergonomicsSoftware(cmyk_usb_panel,
|
|
||||||
mips_whitelist_duplex, cpa)));
|
|
||||||
if (5) {
|
|
||||||
managementNetwork += dma - boolean;
|
|
||||||
kilohertz_token = 2;
|
|
||||||
honeypot_affiliate_ergonomics = fiber;
|
|
||||||
}
|
|
||||||
mouseNorthbridge = byte(nybble_xmp_modem.horse_subnet(
|
|
||||||
analogThroughputService * graphicPoint, drop(daw_bit, dnsIntranet),
|
|
||||||
gateway_ospf), repository.domain_key.mouse(serverData(fileNetwork,
|
|
||||||
trim_duplex_file), cellTapeDirect, token_tooltip_mashup(
|
|
||||||
ripcordingMashup)));
|
|
||||||
module_it = honeypot_driver(client_cold_dvr(593902, ripping_frequency) +
|
|
||||||
coreLog.joystick(componentUdpLink), windows_expansion_touchscreen);
|
|
||||||
bashGigabit.external.reality(2, server_hardware_codec.flops.ebookSampling(
|
|
||||||
ciscNavigationBacklink, table + cleanDriver), indexProtocolIsp);
|
|
||||||
</code></pre>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/example/collapsed/3rd-level/_index.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents"></nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Academic Resources</title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/example/collapsed/3rd-level/</link>
|
|
||||||
<description>Recent content on Academic Resources</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>zh</language><atom:link href="https://academics.jamesflare.com/docs/example/collapsed/3rd-level/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
<item>
|
|
||||||
<title></title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/example/collapsed/3rd-level/4th-level/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/example/collapsed/3rd-level/4th-level/</guid>
|
|
||||||
<description>4th Level of Menu # Caesorum illa tu sentit micat vestes papyriferi # Inde aderam facti; Theseus vis de tauri illa peream. Oculos uberaque non regisque vobis cursuque, opus venit quam vulnera. Et maiora necemque, lege modo; gestanda nitidi, vero? Dum ne pectoraque testantur.
|
|
||||||
Venasque repulsa Samos qui, exspectatum eram animosque hinc, aut manes, Assyrii. Cupiens auctoribus pariter rubet, profana magni super nocens. Vos ius sibilat inpar turba visae iusto!</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,231 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/example/collapsed/" />
|
|
||||||
<title>Collapsed | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://academics.jamesflare.com/docs/example/collapsed/index.xml" title="Academic Resources" />
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Collapsed</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents"></nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"></article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/example/collapsed/_index.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents"></nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Academic Resources</title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/example/collapsed/</link>
|
|
||||||
<description>Recent content on Academic Resources</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>zh</language><atom:link href="https://academics.jamesflare.com/docs/example/collapsed/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,306 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="This page is hidden in menu # Quondam non pater est dignior ille Eurotas # Latent te facies # Lorem markdownum arma ignoscas vocavit quoque ille texit mandata mentis ultimus, frementes, qui in vel. Hippotades Peleus pennas conscia cuiquam Caeneus quas.
|
|
||||||
Pater demittere evincitque reddunt Maxime adhuc pressit huc Danaas quid freta Soror ego Luctus linguam saxa ultroque prior Tatiumque inquit Saepe liquitur subita superata dederat Anius sudor Cum honorum Latona # O fallor in sustinui iussorum equidem.">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="This page is hidden in menu # Quondam non pater est dignior ille Eurotas # Latent te facies # Lorem markdownum arma ignoscas vocavit quoque ille texit mandata mentis ultimus, frementes, qui in vel. Hippotades Peleus pennas conscia cuiquam Caeneus quas.
|
|
||||||
Pater demittere evincitque reddunt Maxime adhuc pressit huc Danaas quid freta Soror ego Luctus linguam saxa ultroque prior Tatiumque inquit Saepe liquitur subita superata dederat Anius sudor Cum honorum Latona # O fallor in sustinui iussorum equidem." />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/example/hidden/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>Hidden | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Hidden</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#latent-te-facies">Latent te facies</a></li>
|
|
||||||
<li><a href="#cum-honorum-latona">Cum honorum Latona</a></li>
|
|
||||||
<li><a href="#fronde-cetera-dextrae-sequens-pennis-voce-muneris">Fronde cetera dextrae sequens pennis voce muneris</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="this-page-is-hidden-in-menu">
|
|
||||||
This page is hidden in menu
|
|
||||||
<a class="anchor" href="#this-page-is-hidden-in-menu">#</a>
|
|
||||||
</h1>
|
|
||||||
<h1 id="quondam-non-pater-est-dignior-ille-eurotas">
|
|
||||||
Quondam non pater est dignior ille Eurotas
|
|
||||||
<a class="anchor" href="#quondam-non-pater-est-dignior-ille-eurotas">#</a>
|
|
||||||
</h1>
|
|
||||||
<h2 id="latent-te-facies">
|
|
||||||
Latent te facies
|
|
||||||
<a class="anchor" href="#latent-te-facies">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Lorem markdownum arma ignoscas vocavit quoque ille texit mandata mentis ultimus,
|
|
||||||
frementes, qui in vel. Hippotades Peleus <a href="http://gratia.net/tot-qua.php">pennas
|
|
||||||
conscia</a> cuiquam Caeneus quas.</p>
|
|
||||||
<ul>
|
|
||||||
<li>Pater demittere evincitque reddunt</li>
|
|
||||||
<li>Maxime adhuc pressit huc Danaas quid freta</li>
|
|
||||||
<li>Soror ego</li>
|
|
||||||
<li>Luctus linguam saxa ultroque prior Tatiumque inquit</li>
|
|
||||||
<li>Saepe liquitur subita superata dederat Anius sudor</li>
|
|
||||||
</ul>
|
|
||||||
<h2 id="cum-honorum-latona">
|
|
||||||
Cum honorum Latona
|
|
||||||
<a class="anchor" href="#cum-honorum-latona">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>O fallor <a href="http://www.spectataharundine.org/aquas-relinquit.html">in sustinui
|
|
||||||
iussorum</a> equidem.
|
|
||||||
Nymphae operi oris alii fronde parens dumque, in auro ait mox ingenti proxima
|
|
||||||
iamdudum maius?</p>
|
|
||||||
<pre><code>reality(burnDocking(apache_nanometer),
|
|
||||||
pad.property_data_programming.sectorBrowserPpga(dataMask, 37,
|
|
||||||
recycleRup));
|
|
||||||
intellectualVaporwareUser += -5 * 4;
|
|
||||||
traceroute_key_upnp /= lag_optical(android.smb(thyristorTftp));
|
|
||||||
surge_host_golden = mca_compact_device(dual_dpi_opengl, 33,
|
|
||||||
commerce_add_ppc);
|
|
||||||
if (lun_ipv) {
|
|
||||||
verticalExtranet(1, thumbnail_ttl, 3);
|
|
||||||
bar_graphics_jpeg(chipset - sector_xmp_beta);
|
|
||||||
}
|
|
||||||
</code></pre>
|
|
||||||
<h2 id="fronde-cetera-dextrae-sequens-pennis-voce-muneris">
|
|
||||||
Fronde cetera dextrae sequens pennis voce muneris
|
|
||||||
<a class="anchor" href="#fronde-cetera-dextrae-sequens-pennis-voce-muneris">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Acta cretus diem restet utque; move integer, oscula non inspirat, noctisque
|
|
||||||
scelus! Nantemque in suas vobis quamvis, et labori!</p>
|
|
||||||
<pre><code>var runtimeDiskCompiler = home - array_ad_software;
|
|
||||||
if (internic > disk) {
|
|
||||||
emoticonLockCron += 37 + bps - 4;
|
|
||||||
wan_ansi_honeypot.cardGigaflops = artificialStorageCgi;
|
|
||||||
simplex -= downloadAccess;
|
|
||||||
}
|
|
||||||
var volumeHardeningAndroid = pixel + tftp + onProcessorUnmount;
|
|
||||||
sector(memory(firewire + interlaced, wired));</code></pre>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/example/hidden.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#latent-te-facies">Latent te facies</a></li>
|
|
||||||
<li><a href="#cum-honorum-latona">Cum honorum Latona</a></li>
|
|
||||||
<li><a href="#fronde-cetera-dextrae-sequens-pennis-voce-muneris">Fronde cetera dextrae sequens pennis voce muneris</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,322 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="Introduction # Ferre hinnitibus erat accipitrem dixi Troiae tollens # Lorem markdownum, a quoque nutu est quodcumque mandasset veluti. Passim inportuna totidemque nympha fert; repetens pendent, poenarum guttura sed vacet non, mortali undas. Omnis pharetramque gramen portentificisque membris servatum novabis fallit de nubibus atque silvas mihi. Dixit repetitaque Quid; verrit longa; sententia mandat quascumque nescio solebat litore; noctes. Hostem haerentem circuit plenaque tamen.
|
|
||||||
Pedum ne indigenae finire invergens carpebat Velit posses summoque De fumos illa foret Est simul fameque tauri qua ad # Locum nullus nisi vomentes.">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="Example Site" />
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/example/" />
|
|
||||||
<title>Example Site | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://academics.jamesflare.com/docs/example/index.xml" title="Academic Resources" />
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Example Site</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#ferre-hinnitibus-erat-accipitrem-dixi-troiae-tollens">Ferre hinnitibus erat accipitrem dixi Troiae tollens</a></li>
|
|
||||||
<li><a href="#est-simul-fameque-tauri-qua-ad">Est simul fameque tauri qua ad</a></li>
|
|
||||||
<li><a href="#me-sol">Me sol</a></li>
|
|
||||||
<li><a href="#trepident-sitimque">Trepident sitimque</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="introduction">
|
|
||||||
Introduction
|
|
||||||
<a class="anchor" href="#introduction">#</a>
|
|
||||||
</h1>
|
|
||||||
<h2 id="ferre-hinnitibus-erat-accipitrem-dixi-troiae-tollens">
|
|
||||||
Ferre hinnitibus erat accipitrem dixi Troiae tollens
|
|
||||||
<a class="anchor" href="#ferre-hinnitibus-erat-accipitrem-dixi-troiae-tollens">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Lorem markdownum, a quoque nutu est <em>quodcumque mandasset</em> veluti. Passim
|
|
||||||
inportuna totidemque nympha fert; repetens pendent, poenarum guttura sed vacet
|
|
||||||
non, mortali undas. Omnis pharetramque gramen portentificisque membris servatum
|
|
||||||
novabis fallit de nubibus atque silvas mihi. <strong>Dixit repetitaque Quid</strong>; verrit
|
|
||||||
longa; sententia <a href="http://pastor-ad.io/questussilvas">mandat</a> quascumque nescio
|
|
||||||
solebat <a href="http://lacrimas-ab.net/">litore</a>; noctes. <em>Hostem haerentem</em> circuit
|
|
||||||
<a href="http://www.sine.io/in">plenaque tamen</a>.</p>
|
|
||||||
<ul>
|
|
||||||
<li>Pedum ne indigenae finire invergens carpebat</li>
|
|
||||||
<li>Velit posses summoque</li>
|
|
||||||
<li>De fumos illa foret</li>
|
|
||||||
</ul>
|
|
||||||
<h2 id="est-simul-fameque-tauri-qua-ad">
|
|
||||||
Est simul fameque tauri qua ad
|
|
||||||
<a class="anchor" href="#est-simul-fameque-tauri-qua-ad">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Locum nullus nisi vomentes. Ab Persea sermone vela, miratur aratro; eandem
|
|
||||||
Argolicas gener.</p>
|
|
||||||
<h2 id="me-sol">
|
|
||||||
Me sol
|
|
||||||
<a class="anchor" href="#me-sol">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Nec dis certa fuit socer, Nonacria <strong>dies</strong> manet tacitaque sibi? Sucis est
|
|
||||||
iactata Castrumque iudex, et iactato quoque terraeque es tandem et maternos
|
|
||||||
vittis. Lumina litus bene poenamque animos callem ne tuas in leones illam dea
|
|
||||||
cadunt genus, et pleno nunc in quod. Anumque crescentesque sanguinis
|
|
||||||
<a href="http://www.late.net/alimentavirides">progenies</a> nuribus rustica tinguet. Pater
|
|
||||||
omnes liquido creditis noctem.</p>
|
|
||||||
<pre><code>if (mirrored(icmp_dvd_pim, 3, smbMirroredHard) != lion(clickImportQueue,
|
|
||||||
viralItunesBalancing, bankruptcy_file_pptp)) {
|
|
||||||
file += ip_cybercrime_suffix;
|
|
||||||
}
|
|
||||||
if (runtimeSmartRom == netMarketingWord) {
|
|
||||||
virusBalancingWin *= scriptPromptBespoke + raster(post_drive,
|
|
||||||
windowsSli);
|
|
||||||
cd = address_hertz_trojan;
|
|
||||||
soap_ccd.pcbServerGigahertz(asp_hardware_isa, offlinePeopleware, nui);
|
|
||||||
} else {
|
|
||||||
megabyte.api = modem_flowchart - web + syntaxHalftoneAddress;
|
|
||||||
}
|
|
||||||
if (3 < mebibyteNetworkAnimated) {
|
|
||||||
pharming_regular_error *= jsp_ribbon + algorithm * recycleMediaKindle(
|
|
||||||
dvrSyntax, cdma);
|
|
||||||
adf_sla *= hoverCropDrive;
|
|
||||||
templateNtfs = -1 - vertical;
|
|
||||||
} else {
|
|
||||||
expressionCompressionVariable.bootMulti = white_eup_javascript(
|
|
||||||
table_suffix);
|
|
||||||
guidPpiPram.tracerouteLinux += rtfTerabyteQuicktime(1,
|
|
||||||
managementRosetta(webcamActivex), 740874);
|
|
||||||
}
|
|
||||||
var virusTweetSsl = nullGigo;
|
|
||||||
</code></pre>
|
|
||||||
<h2 id="trepident-sitimque">
|
|
||||||
Trepident sitimque
|
|
||||||
<a class="anchor" href="#trepident-sitimque">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Sentiet et ferali errorem fessam, coercet superbus, Ascaniumque in pennis
|
|
||||||
mediis; dolor? Vidit imi <strong>Aeacon</strong> perfida propositos adde, tua Somni Fluctibus
|
|
||||||
errante lustrat non.</p>
|
|
||||||
<p>Tamen inde, vos videt e flammis Scythica parantem rupisque pectora umbras. Haec
|
|
||||||
ficta canistris repercusso simul ego aris Dixit! Esse Fama trepidare hunc
|
|
||||||
crescendo vigor ululasse vertice <em>exspatiantur</em> celer tepidique petita aversata
|
|
||||||
oculis iussa est me ferro.</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/example/_index.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#ferre-hinnitibus-erat-accipitrem-dixi-troiae-tollens">Ferre hinnitibus erat accipitrem dixi Troiae tollens</a></li>
|
|
||||||
<li><a href="#est-simul-fameque-tauri-qua-ad">Est simul fameque tauri qua ad</a></li>
|
|
||||||
<li><a href="#me-sol">Me sol</a></li>
|
|
||||||
<li><a href="#trepident-sitimque">Trepident sitimque</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Example Site on Academic Resources</title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/example/</link>
|
|
||||||
<description>Recent content in Example Site on Academic Resources</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>zh</language><atom:link href="https://academics.jamesflare.com/docs/example/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
<item>
|
|
||||||
<title></title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/example/hidden/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/example/hidden/</guid>
|
|
||||||
<description>This page is hidden in menu # Quondam non pater est dignior ille Eurotas # Latent te facies # Lorem markdownum arma ignoscas vocavit quoque ille texit mandata mentis ultimus, frementes, qui in vel. Hippotades Peleus pennas conscia cuiquam Caeneus quas.
|
|
||||||
Pater demittere evincitque reddunt Maxime adhuc pressit huc Danaas quid freta Soror ego Luctus linguam saxa ultroque prior Tatiumque inquit Saepe liquitur subita superata dederat Anius sudor Cum honorum Latona # O fallor in sustinui iussorum equidem.</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,340 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="Ubi loqui # Mentem genus facietque salire tempus bracchia # Lorem markdownum partu paterno Achillem. Habent amne generosi aderant ad pellem nec erat sustinet merces columque haec et, dixit minus nutrit accipiam subibis subdidit. Temeraria servatum agros qui sed fulva facta. Primum ultima, dedit, suo quisque linguae medentes fixo: tum petis.
|
|
||||||
Rapit vocant si hunc siste adspice # Ora precari Patraeque Neptunia, dixit Danae Cithaeron armaque maxima in nati Coniugis templis fluidove.">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/example/table-of-contents/" />
|
|
||||||
<title>Table of Contents | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://academics.jamesflare.com/docs/example/table-of-contents/index.xml" title="Academic Resources" />
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Table of Contents</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#mentem-genus-facietque-salire-tempus-bracchia">Mentem genus facietque salire tempus bracchia</a></li>
|
|
||||||
<li><a href="#rapit-vocant-si-hunc-siste-adspice">Rapit vocant si hunc siste adspice</a></li>
|
|
||||||
<li><a href="#locus-fuit-caecis">Locus fuit caecis</a></li>
|
|
||||||
<li><a href="#placabilis-coactis-nega-ingemuit-ignoscat-nimia-non">Placabilis coactis nega ingemuit ignoscat nimia non</a></li>
|
|
||||||
<li><a href="#caesorum-illa-tu-sentit-micat-vestes-papyriferi">Caesorum illa tu sentit micat vestes papyriferi</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="ubi-loqui">
|
|
||||||
Ubi loqui
|
|
||||||
<a class="anchor" href="#ubi-loqui">#</a>
|
|
||||||
</h1>
|
|
||||||
<h2 id="mentem-genus-facietque-salire-tempus-bracchia">
|
|
||||||
Mentem genus facietque salire tempus bracchia
|
|
||||||
<a class="anchor" href="#mentem-genus-facietque-salire-tempus-bracchia">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Lorem markdownum partu paterno Achillem. Habent amne generosi aderant ad pellem
|
|
||||||
nec erat sustinet merces columque haec et, dixit minus nutrit accipiam subibis
|
|
||||||
subdidit. Temeraria servatum agros qui sed fulva facta. Primum ultima, dedit,
|
|
||||||
suo quisque linguae medentes fixo: tum petis.</p>
|
|
||||||
<h2 id="rapit-vocant-si-hunc-siste-adspice">
|
|
||||||
Rapit vocant si hunc siste adspice
|
|
||||||
<a class="anchor" href="#rapit-vocant-si-hunc-siste-adspice">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Ora precari Patraeque Neptunia, dixit Danae <a href="http://mersis-an.org/litoristum">Cithaeron
|
|
||||||
armaque</a> maxima in <strong>nati Coniugis</strong> templis
|
|
||||||
fluidove. Effugit usus nec ingreditur agmen <em>ac manus</em> conlato. Nullis vagis
|
|
||||||
nequiquam vultibus aliquos altera <em>suum venis</em> teneas fretum. Armos <a href="http://tutum.io/me">remotis
|
|
||||||
hoc</a> sine ferrea iuncta quam!</p>
|
|
||||||
<h2 id="locus-fuit-caecis">
|
|
||||||
Locus fuit caecis
|
|
||||||
<a class="anchor" href="#locus-fuit-caecis">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Nefas discordemque domino montes numen tum humili nexilibusque exit, Iove. Quae
|
|
||||||
miror esse, scelerisque Melaneus viribus. Miseri laurus. Hoc est proposita me
|
|
||||||
ante aliquid, aura inponere candidioribus quidque accendit bella, sumpta.
|
|
||||||
Intravit quam erat figentem hunc, motus de fontes parvo tempestate.</p>
|
|
||||||
<pre><code>iscsi_virus = pitch(json_in_on(eupViral),
|
|
||||||
northbridge_services_troubleshooting, personal(
|
|
||||||
firmware_rw.trash_rw_crm.device(interactive_gopher_personal,
|
|
||||||
software, -1), megabit, ergonomicsSoftware(cmyk_usb_panel,
|
|
||||||
mips_whitelist_duplex, cpa)));
|
|
||||||
if (5) {
|
|
||||||
managementNetwork += dma - boolean;
|
|
||||||
kilohertz_token = 2;
|
|
||||||
honeypot_affiliate_ergonomics = fiber;
|
|
||||||
}
|
|
||||||
mouseNorthbridge = byte(nybble_xmp_modem.horse_subnet(
|
|
||||||
analogThroughputService * graphicPoint, drop(daw_bit, dnsIntranet),
|
|
||||||
gateway_ospf), repository.domain_key.mouse(serverData(fileNetwork,
|
|
||||||
trim_duplex_file), cellTapeDirect, token_tooltip_mashup(
|
|
||||||
ripcordingMashup)));
|
|
||||||
module_it = honeypot_driver(client_cold_dvr(593902, ripping_frequency) +
|
|
||||||
coreLog.joystick(componentUdpLink), windows_expansion_touchscreen);
|
|
||||||
bashGigabit.external.reality(2, server_hardware_codec.flops.ebookSampling(
|
|
||||||
ciscNavigationBacklink, table + cleanDriver), indexProtocolIsp);
|
|
||||||
</code></pre>
|
|
||||||
<h2 id="placabilis-coactis-nega-ingemuit-ignoscat-nimia-non">
|
|
||||||
Placabilis coactis nega ingemuit ignoscat nimia non
|
|
||||||
<a class="anchor" href="#placabilis-coactis-nega-ingemuit-ignoscat-nimia-non">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Frontis turba. Oculi gravis est Delphice; <em>inque praedaque</em> sanguine manu non.</p>
|
|
||||||
<pre><code>if (ad_api) {
|
|
||||||
zif += usb.tiffAvatarRate(subnet, digital_rt) + exploitDrive;
|
|
||||||
gigaflops(2 - bluetooth, edi_asp_memory.gopher(queryCursor, laptop),
|
|
||||||
panel_point_firmware);
|
|
||||||
spyware_bash.statePopApplet = express_netbios_digital(
|
|
||||||
insertion_troubleshooting.brouter(recordFolderUs), 65);
|
|
||||||
}
|
|
||||||
recursionCoreRay = -5;
|
|
||||||
if (hub == non) {
|
|
||||||
portBoxVirus = soundWeb(recursive_card(rwTechnologyLeopard),
|
|
||||||
font_radcab, guidCmsScalable + reciprocalMatrixPim);
|
|
||||||
left.bug = screenshot;
|
|
||||||
} else {
|
|
||||||
tooltipOpacity = raw_process_permalink(webcamFontUser, -1);
|
|
||||||
executable_router += tape;
|
|
||||||
}
|
|
||||||
if (tft) {
|
|
||||||
bandwidthWeb *= social_page;
|
|
||||||
} else {
|
|
||||||
regular += 611883;
|
|
||||||
thumbnail /= system_lag_keyboard;
|
|
||||||
}
|
|
||||||
</code></pre>
|
|
||||||
<h2 id="caesorum-illa-tu-sentit-micat-vestes-papyriferi">
|
|
||||||
Caesorum illa tu sentit micat vestes papyriferi
|
|
||||||
<a class="anchor" href="#caesorum-illa-tu-sentit-micat-vestes-papyriferi">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Inde aderam facti; Theseus vis de tauri illa peream. Oculos <strong>uberaque</strong> non
|
|
||||||
regisque vobis cursuque, opus venit quam vulnera. Et maiora necemque, lege modo;
|
|
||||||
gestanda nitidi, vero? Dum ne pectoraque testantur.</p>
|
|
||||||
<p>Venasque repulsa Samos qui, exspectatum eram animosque hinc, <a href="http://www.creveratnon.net/apricaaetheriis">aut
|
|
||||||
manes</a>, Assyrii. Cupiens auctoribus
|
|
||||||
pariter rubet, profana magni super nocens. Vos ius sibilat inpar turba visae
|
|
||||||
iusto! Sedes ante dum superest <strong>extrema</strong>.</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/example/table-of-contents/_index.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#mentem-genus-facietque-salire-tempus-bracchia">Mentem genus facietque salire tempus bracchia</a></li>
|
|
||||||
<li><a href="#rapit-vocant-si-hunc-siste-adspice">Rapit vocant si hunc siste adspice</a></li>
|
|
||||||
<li><a href="#locus-fuit-caecis">Locus fuit caecis</a></li>
|
|
||||||
<li><a href="#placabilis-coactis-nega-ingemuit-ignoscat-nimia-non">Placabilis coactis nega ingemuit ignoscat nimia non</a></li>
|
|
||||||
<li><a href="#caesorum-illa-tu-sentit-micat-vestes-papyriferi">Caesorum illa tu sentit micat vestes papyriferi</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Academic Resources</title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/example/table-of-contents/</link>
|
|
||||||
<description>Recent content on Academic Resources</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>zh</language><atom:link href="https://academics.jamesflare.com/docs/example/table-of-contents/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
<item>
|
|
||||||
<title>With ToC</title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/example/table-of-contents/with-toc/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/example/table-of-contents/with-toc/</guid>
|
|
||||||
<description>Caput vino delphine in tamen vias # Cognita laeva illo fracta # Lorem markdownum pavent auras, surgit nunc cingentibus libet Laomedonque que est. Pastor An arbor filia foedat, ne fugit aliter, per. Helicona illas et callida neptem est Oresitrophos caput, dentibus est venit. Tenet reddite famuli praesentem fortibus, quaeque vis foret si frondes gelidos gravidae circumtulit inpulit armenta nativum.
|
|
||||||
Te at cruciabere vides rubentis manebo Maturuit in praetemptat ruborem ignara postquam habitasse Subitarum supplevit quoque fontesque venabula spretis modo Montis tot est mali quasque gravis Quinquennem domus arsit ipse Pellem turis pugnabant locavit Natus quaerere # Pectora et sine mulcere, coniuge dum tincta incurvae.</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Without ToC</title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/example/table-of-contents/without-toc/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/example/table-of-contents/without-toc/</guid>
|
|
||||||
<description>At me ipso nepotibus nunc celebratior genus # Tanto oblite # Lorem markdownum pectora novis patenti igne sua opus aurae feras materiaque illic demersit imago et aristas questaque posset. Vomit quoque suo inhaesuro clara. Esse cumque, per referri triste. Ut exponit solisque communis in tendens vincetis agisque iamque huic bene ante vetat omina Thebae rates. Aeacus servat admonitu concidit, ad resimas vultus et rugas vultu dignamque Siphnon.
|
|
||||||
Quam iugulum regia simulacra, plus meruit humo pecorumque haesit, ab discedunt dixit: ritu pharetramque.</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,323 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="Caput vino delphine in tamen vias # Cognita laeva illo fracta # Lorem markdownum pavent auras, surgit nunc cingentibus libet Laomedonque que est. Pastor An arbor filia foedat, ne fugit aliter, per. Helicona illas et callida neptem est Oresitrophos caput, dentibus est venit. Tenet reddite famuli praesentem fortibus, quaeque vis foret si frondes gelidos gravidae circumtulit inpulit armenta nativum.
|
|
||||||
Te at cruciabere vides rubentis manebo Maturuit in praetemptat ruborem ignara postquam habitasse Subitarum supplevit quoque fontesque venabula spretis modo Montis tot est mali quasque gravis Quinquennem domus arsit ipse Pellem turis pugnabant locavit Natus quaerere # Pectora et sine mulcere, coniuge dum tincta incurvae.">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="With ToC" />
|
|
||||||
<meta property="og:description" content="Caput vino delphine in tamen vias # Cognita laeva illo fracta # Lorem markdownum pavent auras, surgit nunc cingentibus libet Laomedonque que est. Pastor An arbor filia foedat, ne fugit aliter, per. Helicona illas et callida neptem est Oresitrophos caput, dentibus est venit. Tenet reddite famuli praesentem fortibus, quaeque vis foret si frondes gelidos gravidae circumtulit inpulit armenta nativum.
|
|
||||||
Te at cruciabere vides rubentis manebo Maturuit in praetemptat ruborem ignara postquam habitasse Subitarum supplevit quoque fontesque venabula spretis modo Montis tot est mali quasque gravis Quinquennem domus arsit ipse Pellem turis pugnabant locavit Natus quaerere # Pectora et sine mulcere, coniuge dum tincta incurvae." />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/example/table-of-contents/with-toc/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>With ToC | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>With ToC</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#cognita-laeva-illo-fracta">Cognita laeva illo fracta</a></li>
|
|
||||||
<li><a href="#natus-quaerere">Natus quaerere</a></li>
|
|
||||||
<li><a href="#limitibus-misere-sit">Limitibus misere sit</a></li>
|
|
||||||
<li><a href="#enim-sua">Enim sua</a></li>
|
|
||||||
<li><a href="#germana-aves-pignus-tecta">Germana aves pignus tecta</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="caput-vino-delphine-in-tamen-vias">
|
|
||||||
Caput vino delphine in tamen vias
|
|
||||||
<a class="anchor" href="#caput-vino-delphine-in-tamen-vias">#</a>
|
|
||||||
</h1>
|
|
||||||
<h2 id="cognita-laeva-illo-fracta">
|
|
||||||
Cognita laeva illo fracta
|
|
||||||
<a class="anchor" href="#cognita-laeva-illo-fracta">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Lorem markdownum pavent auras, surgit nunc cingentibus libet <strong>Laomedonque que</strong>
|
|
||||||
est. Pastor <a href="http://est.org/ire.aspx">An</a> arbor filia foedat, ne <a href="http://www.indiciumturbam.org/moramquid.php">fugit
|
|
||||||
aliter</a>, per. Helicona illas et
|
|
||||||
callida neptem est <em>Oresitrophos</em> caput, dentibus est venit. Tenet reddite
|
|
||||||
<a href="http://www.antro-et.net/">famuli</a> praesentem fortibus, quaeque vis foret si
|
|
||||||
frondes <em>gelidos</em> gravidae circumtulit <a href="http://incurvasustulit.io/illi-virtute.html">inpulit armenta
|
|
||||||
nativum</a>.</p>
|
|
||||||
<ol>
|
|
||||||
<li>Te at cruciabere vides rubentis manebo</li>
|
|
||||||
<li>Maturuit in praetemptat ruborem ignara postquam habitasse</li>
|
|
||||||
<li>Subitarum supplevit quoque fontesque venabula spretis modo</li>
|
|
||||||
<li>Montis tot est mali quasque gravis</li>
|
|
||||||
<li>Quinquennem domus arsit ipse</li>
|
|
||||||
<li>Pellem turis pugnabant locavit</li>
|
|
||||||
</ol>
|
|
||||||
<h2 id="natus-quaerere">
|
|
||||||
Natus quaerere
|
|
||||||
<a class="anchor" href="#natus-quaerere">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Pectora et sine mulcere, coniuge dum tincta incurvae. Quis iam; est dextra
|
|
||||||
Peneosque, metuis a verba, primo. Illa sed colloque suis: magno: gramen, aera
|
|
||||||
excutiunt concipit.</p>
|
|
||||||
<blockquote>
|
|
||||||
<p>Phrygiae petendo suisque extimuit, super, pars quod audet! Turba negarem.
|
|
||||||
Fuerat attonitus; et dextra retinet sidera ulnas undas instimulat vacuae
|
|
||||||
generis? <em>Agnus</em> dabat et ignotis dextera, sic tibi pacis <strong>feriente at mora</strong>
|
|
||||||
euhoeque <em>comites hostem</em> vestras Phineus. Vultuque sanguine dominoque <a href="http://iuvat.org/eundem.php">metuit
|
|
||||||
risi</a> fama vergit summaque meus clarissimus
|
|
||||||
artesque tinguebat successor nominis cervice caelicolae.</p>
|
|
||||||
</blockquote>
|
|
||||||
<h2 id="limitibus-misere-sit">
|
|
||||||
Limitibus misere sit
|
|
||||||
<a class="anchor" href="#limitibus-misere-sit">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Aurea non fata repertis praerupit feruntur simul, meae hosti lentaque <em>citius
|
|
||||||
levibus</em>, cum sede dixit, Phaethon texta. <em>Albentibus summos</em> multifidasque
|
|
||||||
iungitur loquendi an pectore, mihi ursaque omnia adfata, aeno parvumque in animi
|
|
||||||
perlucentes. Epytus agis ait vixque clamat ornum adversam spondet, quid sceptra
|
|
||||||
ipsum <strong>est</strong>. Reseret nec; saeva suo passu debentia linguam terga et aures et
|
|
||||||
cervix <a href="http://www.amnem.io/pervenit.aspx">de</a> ubera. Coercet gelidumque manus,
|
|
||||||
doluit volvitur induta?</p>
|
|
||||||
<h2 id="enim-sua">
|
|
||||||
Enim sua
|
|
||||||
<a class="anchor" href="#enim-sua">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Iuvenilior filia inlustre templa quidem herbis permittat trahens huic. In
|
|
||||||
cruribus proceres sole crescitque <em>fata</em>, quos quos; merui maris se non tamen
|
|
||||||
in, mea.</p>
|
|
||||||
<h2 id="germana-aves-pignus-tecta">
|
|
||||||
Germana aves pignus tecta
|
|
||||||
<a class="anchor" href="#germana-aves-pignus-tecta">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Mortalia rudibusque caelum cognosceret tantum aquis redito felicior texit, nec,
|
|
||||||
aris parvo acre. Me parum contulerant multi tenentem, gratissime suis; vultum tu
|
|
||||||
occupat deficeret corpora, sonum. E Actaea inplevit Phinea concepit nomenque
|
|
||||||
potest sanguine captam nulla et, in duxisses campis non; mercede. Dicere cur
|
|
||||||
Leucothoen obitum?</p>
|
|
||||||
<p>Postibus mittam est <em>nubibus principium pluma</em>, exsecratur facta et. Iunge
|
|
||||||
Mnemonidas pallamque pars; vere restitit alis flumina quae <strong>quoque</strong>, est
|
|
||||||
ignara infestus Pyrrha. Di ducis terris maculatum At sede praemia manes
|
|
||||||
nullaque!</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/example/table-of-contents/with-toc.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#cognita-laeva-illo-fracta">Cognita laeva illo fracta</a></li>
|
|
||||||
<li><a href="#natus-quaerere">Natus quaerere</a></li>
|
|
||||||
<li><a href="#limitibus-misere-sit">Limitibus misere sit</a></li>
|
|
||||||
<li><a href="#enim-sua">Enim sua</a></li>
|
|
||||||
<li><a href="#germana-aves-pignus-tecta">Germana aves pignus tecta</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,274 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="At me ipso nepotibus nunc celebratior genus # Tanto oblite # Lorem markdownum pectora novis patenti igne sua opus aurae feras materiaque illic demersit imago et aristas questaque posset. Vomit quoque suo inhaesuro clara. Esse cumque, per referri triste. Ut exponit solisque communis in tendens vincetis agisque iamque huic bene ante vetat omina Thebae rates. Aeacus servat admonitu concidit, ad resimas vultus et rugas vultu dignamque Siphnon.
|
|
||||||
Quam iugulum regia simulacra, plus meruit humo pecorumque haesit, ab discedunt dixit: ritu pharetramque.">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="Without ToC" />
|
|
||||||
<meta property="og:description" content="At me ipso nepotibus nunc celebratior genus # Tanto oblite # Lorem markdownum pectora novis patenti igne sua opus aurae feras materiaque illic demersit imago et aristas questaque posset. Vomit quoque suo inhaesuro clara. Esse cumque, per referri triste. Ut exponit solisque communis in tendens vincetis agisque iamque huic bene ante vetat omina Thebae rates. Aeacus servat admonitu concidit, ad resimas vultus et rugas vultu dignamque Siphnon.
|
|
||||||
Quam iugulum regia simulacra, plus meruit humo pecorumque haesit, ab discedunt dixit: ritu pharetramque." />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/example/table-of-contents/without-toc/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>Without ToC | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Without ToC</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="at-me-ipso-nepotibus-nunc-celebratior-genus">
|
|
||||||
At me ipso nepotibus nunc celebratior genus
|
|
||||||
<a class="anchor" href="#at-me-ipso-nepotibus-nunc-celebratior-genus">#</a>
|
|
||||||
</h1>
|
|
||||||
<h2 id="tanto-oblite">
|
|
||||||
Tanto oblite
|
|
||||||
<a class="anchor" href="#tanto-oblite">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Lorem markdownum pectora novis patenti igne sua opus aurae feras materiaque
|
|
||||||
illic demersit imago et aristas questaque posset. Vomit quoque suo inhaesuro
|
|
||||||
clara. Esse cumque, per referri triste. Ut exponit solisque communis in tendens
|
|
||||||
vincetis agisque iamque huic bene ante vetat omina Thebae rates. Aeacus servat
|
|
||||||
admonitu concidit, ad resimas vultus et rugas vultu <strong>dignamque</strong> Siphnon.</p>
|
|
||||||
<p>Quam iugulum regia simulacra, plus meruit humo pecorumque haesit, ab discedunt
|
|
||||||
dixit: ritu pharetramque. Exul Laurenti orantem modo, per densum missisque labor
|
|
||||||
manibus non colla unum, obiectat. Tu pervia collo, fessus quae Cretenque Myconon
|
|
||||||
crate! Tegumenque quae invisi sudore per vocari quaque plus ventis fluidos. Nodo
|
|
||||||
perque, fugisse pectora sorores.</p>
|
|
||||||
<h2 id="summe-promissa-supple-vadit-lenius">
|
|
||||||
Summe promissa supple vadit lenius
|
|
||||||
<a class="anchor" href="#summe-promissa-supple-vadit-lenius">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Quibus largis latebris aethera versato est, ait sentiat faciemque. Aequata alis
|
|
||||||
nec Caeneus exululat inclite corpus est, ire <strong>tibi</strong> ostendens et tibi. Rigent
|
|
||||||
et vires dique possent lumina; <strong>eadem</strong> dixit poma funeribus paret et felix
|
|
||||||
reddebant ventis utile lignum.</p>
|
|
||||||
<ol>
|
|
||||||
<li>Remansit notam Stygia feroxque</li>
|
|
||||||
<li>Et dabit materna</li>
|
|
||||||
<li>Vipereas Phrygiaeque umbram sollicito cruore conlucere suus</li>
|
|
||||||
<li>Quarum Elis corniger</li>
|
|
||||||
<li>Nec ieiunia dixit</li>
|
|
||||||
</ol>
|
|
||||||
<p>Vertitur mos ortu ramosam contudit dumque; placabat ac lumen. Coniunx Amoris
|
|
||||||
spatium poenamque cavernis Thebae Pleiadasque ponunt, rapiare cum quae parum
|
|
||||||
nimium rima.</p>
|
|
||||||
<h2 id="quidem-resupinus-inducto-solebat-una-facinus-quae">
|
|
||||||
Quidem resupinus inducto solebat una facinus quae
|
|
||||||
<a class="anchor" href="#quidem-resupinus-inducto-solebat-una-facinus-quae">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Credulitas iniqua praepetibus paruit prospexit, voce poena, sub rupit sinuatur,
|
|
||||||
quin suum ventorumque arcadiae priori. Soporiferam erat formamque, fecit,
|
|
||||||
invergens, nymphae mutat fessas ait finge.</p>
|
|
||||||
<ol>
|
|
||||||
<li>Baculum mandataque ne addere capiti violentior</li>
|
|
||||||
<li>Altera duas quam hoc ille tenues inquit</li>
|
|
||||||
<li>Sicula sidereus latrantis domoque ratae polluit comites</li>
|
|
||||||
<li>Possit oro clausura namque se nunc iuvenisque</li>
|
|
||||||
<li>Faciem posuit</li>
|
|
||||||
<li>Quodque cum ponunt novercae nata vestrae aratra</li>
|
|
||||||
</ol>
|
|
||||||
<p>Ite extrema Phrygiis, patre dentibus, tonso perculit, enim blanda, manibus fide
|
|
||||||
quos caput armis, posse! Nocendo fas Alcyonae lacertis structa ferarum manus
|
|
||||||
fulmen dubius, saxa caelum effuge extremis fixum tumor adfecit <strong>bella</strong>,
|
|
||||||
potentes? Dum nec insidiosa tempora tegit
|
|
||||||
<a href="http://mihiferre.net/iuvenes-peto.html">spirarunt</a>. Per lupi pars foliis,
|
|
||||||
porreximus humum negant sunt subposuere Sidone steterant auro. Memoraverit sine:
|
|
||||||
ferrum idem Orion caelum heres gerebat fixis?</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/example/table-of-contents/without-toc.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,221 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="Docs" />
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/" />
|
|
||||||
<title>Docs | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="alternate" hreflang="zh" href="https://academics.jamesflare.com/zh/docs/" title="Docs">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://academics.jamesflare.com/docs/index.xml" title="Academic Resources" />
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/docs/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Docs</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"></article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Docs on Academic Resources</title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/</link>
|
|
||||||
<description>Recent content in Docs on Academic Resources</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>zh</language><atom:link href="https://academics.jamesflare.com/docs/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,278 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content=" Buttons # Buttons are styled links that can lead to local page or external link.
|
|
||||||
Example # {{< button relref="/" [class="..."] >}}Get Home{{< /button >}} {{< button href="https://github.com/alex-shpak/hugo-book" >}}Contribute{{< /button >}} Get Home Contribute ">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content=" Buttons # Buttons are styled links that can lead to local page or external link.
|
|
||||||
Example # {{< button relref="/" [class="..."] >}}Get Home{{< /button >}} {{< button href="https://github.com/alex-shpak/hugo-book" >}}Contribute{{< /button >}} Get Home Contribute " />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/shortcodes/buttons/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>Buttons | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Buttons</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="buttons">
|
|
||||||
Buttons
|
|
||||||
<a class="anchor" href="#buttons">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>Buttons are styled links that can lead to local page or external link.</p>
|
|
||||||
<h2 id="example">
|
|
||||||
Example
|
|
||||||
<a class="anchor" href="#example">#</a>
|
|
||||||
</h2>
|
|
||||||
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-tpl" data-lang="tpl"><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#a6e22e">button</span> <span style="color:#a6e22e">relref</span><span style="color:#f92672">=</span><span style="color:#e6db74">"/"</span> <span style="color:#f92672">[</span><span style="color:#a6e22e">class</span><span style="color:#f92672">=</span><span style="color:#e6db74">"..."</span><span style="color:#f92672">]</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>Get Home<span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#f92672">/</span><span style="color:#a6e22e">button</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#a6e22e">button</span> <span style="color:#a6e22e">href</span><span style="color:#f92672">=</span><span style="color:#e6db74">"https://github.com/alex-shpak/hugo-book"</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>Contribute<span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#f92672">/</span><span style="color:#a6e22e">button</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span></code></pre></div><p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/" class="book-btn">
|
|
||||||
Get Home
|
|
||||||
</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://github.com/alex-shpak/hugo-book" target="_blank" rel="noopener" class="book-btn">
|
|
||||||
Contribute
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/shortcodes/buttons.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,304 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="Columns # Columns help organize shorter pieces of content horizontally for readability.
|
|
||||||
{{< columns >}} <!-- begin columns block --> # Left Content Lorem markdownum insigne... <---> <!-- magic separator, between columns --> # Mid Content Lorem markdownum insigne... <---> <!-- magic separator, between columns --> # Right Content Lorem markdownum insigne... {{< /columns >}} Example # Left Content # Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat stringit, frustra Saturnius uteroque inter!">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="Columns # Columns help organize shorter pieces of content horizontally for readability.
|
|
||||||
{{< columns >}} <!-- begin columns block --> # Left Content Lorem markdownum insigne... <---> <!-- magic separator, between columns --> # Mid Content Lorem markdownum insigne... <---> <!-- magic separator, between columns --> # Right Content Lorem markdownum insigne... {{< /columns >}} Example # Left Content # Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat stringit, frustra Saturnius uteroque inter!" />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/shortcodes/columns/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>Columns | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Columns</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="columns">
|
|
||||||
Columns
|
|
||||||
<a class="anchor" href="#columns">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>Columns help organize shorter pieces of content horizontally for readability.</p>
|
|
||||||
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-html" data-lang="html"><span style="display:flex;"><span>{{< <span style="color:#f92672">columns</span> >}} <span style="color:#75715e"><!-- begin columns block --></span>
|
|
||||||
</span></span><span style="display:flex;"><span># Left Content
|
|
||||||
</span></span><span style="display:flex;"><span>Lorem markdownum insigne...
|
|
||||||
</span></span><span style="display:flex;"><span>
|
|
||||||
</span></span><span style="display:flex;"><span><<span style="color:#f92672">---</span>> <span style="color:#75715e"><!-- magic separator, between columns --></span>
|
|
||||||
</span></span><span style="display:flex;"><span>
|
|
||||||
</span></span><span style="display:flex;"><span># Mid Content
|
|
||||||
</span></span><span style="display:flex;"><span>Lorem markdownum insigne...
|
|
||||||
</span></span><span style="display:flex;"><span>
|
|
||||||
</span></span><span style="display:flex;"><span><<span style="color:#f92672">---</span>> <span style="color:#75715e"><!-- magic separator, between columns --></span>
|
|
||||||
</span></span><span style="display:flex;"><span>
|
|
||||||
</span></span><span style="display:flex;"><span># Right Content
|
|
||||||
</span></span><span style="display:flex;"><span>Lorem markdownum insigne...
|
|
||||||
</span></span><span style="display:flex;"><span>{{< /<span style="color:#f92672">columns</span> >}}
|
|
||||||
</span></span></code></pre></div><h2 id="example">
|
|
||||||
Example
|
|
||||||
<a class="anchor" href="#example">#</a>
|
|
||||||
</h2>
|
|
||||||
<div class="book-columns flex flex-wrap">
|
|
||||||
|
|
||||||
<div class="flex-even markdown-inner">
|
|
||||||
<h2 id="left-content">
|
|
||||||
Left Content
|
|
||||||
<a class="anchor" href="#left-content">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat
|
|
||||||
stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa
|
|
||||||
protulit, sed sed aere valvis inhaesuro Pallas animam: qui <em>quid</em>, ignes.
|
|
||||||
Miseratus fonte Ditis conubia.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="flex-even markdown-inner">
|
|
||||||
<h2 id="mid-content">
|
|
||||||
Mid Content
|
|
||||||
<a class="anchor" href="#mid-content">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat
|
|
||||||
stringit, frustra Saturnius uteroque inter!
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="flex-even markdown-inner">
|
|
||||||
<h2 id="right-content">
|
|
||||||
Right Content
|
|
||||||
<a class="anchor" href="#right-content">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat
|
|
||||||
stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa
|
|
||||||
protulit, sed sed aere valvis inhaesuro Pallas animam: qui <em>quid</em>, ignes.
|
|
||||||
Miseratus fonte Ditis conubia.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/shortcodes/columns.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,273 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content=" Details # Details shortcode is a helper for details html5 element. It is going to replace expand shortcode.
|
|
||||||
Example # {{< details "Title" [open] >}} ## Markdown content Lorem markdownum insigne... {{< /details >}} {{< details title="Title" open=true >}} ## Markdown content Lorem markdownum insigne... {{< /details >}} Title Markdown content # Lorem markdownum insigne… ">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content=" Details # Details shortcode is a helper for details html5 element. It is going to replace expand shortcode.
|
|
||||||
Example # {{< details "Title" [open] >}} ## Markdown content Lorem markdownum insigne... {{< /details >}} {{< details title="Title" open=true >}} ## Markdown content Lorem markdownum insigne... {{< /details >}} Title Markdown content # Lorem markdownum insigne… " />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/shortcodes/details/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>Details | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Details</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="details">
|
|
||||||
Details
|
|
||||||
<a class="anchor" href="#details">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>Details shortcode is a helper for <code>details</code> html5 element. It is going to replace <code>expand</code> shortcode.</p>
|
|
||||||
<h2 id="example">
|
|
||||||
Example
|
|
||||||
<a class="anchor" href="#example">#</a>
|
|
||||||
</h2>
|
|
||||||
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-tpl" data-lang="tpl"><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#a6e22e">details</span> <span style="color:#e6db74">"Title"</span> <span style="color:#f92672">[</span><span style="color:#a6e22e">open</span><span style="color:#f92672">]</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span><span style="display:flex;"><span>## Markdown content
|
|
||||||
</span></span><span style="display:flex;"><span>Lorem markdownum insigne...
|
|
||||||
</span></span><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#f92672">/</span><span style="color:#a6e22e">details</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span></code></pre></div><div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-tpl" data-lang="tpl"><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#a6e22e">details</span> <span style="color:#a6e22e">title</span><span style="color:#f92672">=</span><span style="color:#e6db74">"Title"</span> <span style="color:#a6e22e">open</span><span style="color:#f92672">=</span><span style="color:#66d9ef">true</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span><span style="display:flex;"><span>## Markdown content
|
|
||||||
</span></span><span style="display:flex;"><span>Lorem markdownum insigne...
|
|
||||||
</span></span><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#f92672">/</span><span style="color:#a6e22e">details</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span></code></pre></div><details open><summary>Title</summary>
|
|
||||||
<div class="markdown-inner">
|
|
||||||
<h2 id="markdown-content">
|
|
||||||
Markdown content
|
|
||||||
<a class="anchor" href="#markdown-content">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Lorem markdownum insigne…
|
|
||||||
</div>
|
|
||||||
</details>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/shortcodes/details.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,320 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="Expand # Expand shortcode can help to decrease clutter on screen by hiding part of text. Expand content by clicking on it.
|
|
||||||
Example # Default # {{< expand >}} ## Markdown content Lorem markdownum insigne... {{< /expand >}} Expand ↕ Markdown content # Lorem markdownum insigne… With Custom Label # {{< expand "Custom Label" "..." >}} ## Markdown content Lorem markdownum insigne... {{< /expand >}} Custom Label ... Markdown content # Lorem markdownum insigne.">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="Expand # Expand shortcode can help to decrease clutter on screen by hiding part of text. Expand content by clicking on it.
|
|
||||||
Example # Default # {{< expand >}} ## Markdown content Lorem markdownum insigne... {{< /expand >}} Expand ↕ Markdown content # Lorem markdownum insigne… With Custom Label # {{< expand "Custom Label" "..." >}} ## Markdown content Lorem markdownum insigne... {{< /expand >}} Custom Label ... Markdown content # Lorem markdownum insigne." />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/shortcodes/expand/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>Expand | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Expand</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#default">Default</a></li>
|
|
||||||
<li><a href="#with-custom-label">With Custom Label</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="expand">
|
|
||||||
Expand
|
|
||||||
<a class="anchor" href="#expand">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>Expand shortcode can help to decrease clutter on screen by hiding part of text. Expand content by clicking on it.</p>
|
|
||||||
<h2 id="example">
|
|
||||||
Example
|
|
||||||
<a class="anchor" href="#example">#</a>
|
|
||||||
</h2>
|
|
||||||
<h3 id="default">
|
|
||||||
Default
|
|
||||||
<a class="anchor" href="#default">#</a>
|
|
||||||
</h3>
|
|
||||||
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-tpl" data-lang="tpl"><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#a6e22e">expand</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span><span style="display:flex;"><span>## Markdown content
|
|
||||||
</span></span><span style="display:flex;"><span>Lorem markdownum insigne...
|
|
||||||
</span></span><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#f92672">/</span><span style="color:#a6e22e">expand</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span></code></pre></div>
|
|
||||||
<div class="book-expand">
|
|
||||||
<label>
|
|
||||||
<div class="book-expand-head flex justify-between">
|
|
||||||
<span>Expand</span>
|
|
||||||
<span>↕</span>
|
|
||||||
</div>
|
|
||||||
<input type="checkbox" class="hidden" />
|
|
||||||
<div class="book-expand-content markdown-inner">
|
|
||||||
<h2 id="markdown-content">
|
|
||||||
Markdown content
|
|
||||||
<a class="anchor" href="#markdown-content">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Lorem markdownum insigne…
|
|
||||||
</div>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h3 id="with-custom-label">
|
|
||||||
With Custom Label
|
|
||||||
<a class="anchor" href="#with-custom-label">#</a>
|
|
||||||
</h3>
|
|
||||||
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-tpl" data-lang="tpl"><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#a6e22e">expand</span> <span style="color:#e6db74">"Custom Label"</span> <span style="color:#e6db74">"..."</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span><span style="display:flex;"><span>## Markdown content
|
|
||||||
</span></span><span style="display:flex;"><span>Lorem markdownum insigne...
|
|
||||||
</span></span><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#f92672">/</span><span style="color:#a6e22e">expand</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span></code></pre></div>
|
|
||||||
<div class="book-expand">
|
|
||||||
<label>
|
|
||||||
<div class="book-expand-head flex justify-between">
|
|
||||||
<span>Custom Label</span>
|
|
||||||
<span>...</span>
|
|
||||||
</div>
|
|
||||||
<input type="checkbox" class="hidden" />
|
|
||||||
<div class="book-expand-content markdown-inner">
|
|
||||||
<h2 id="markdown-content">
|
|
||||||
Markdown content
|
|
||||||
<a class="anchor" href="#markdown-content">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat
|
|
||||||
stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa
|
|
||||||
protulit, sed sed aere valvis inhaesuro Pallas animam: qui <em>quid</em>, ignes.
|
|
||||||
Miseratus fonte Ditis conubia.
|
|
||||||
</div>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/shortcodes/expand.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#default">Default</a></li>
|
|
||||||
<li><a href="#with-custom-label">With Custom Label</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,283 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="Hints # Hint shortcode can be used as hint/alerts/notification block.
|
|
||||||
There are 3 colors to choose: info, warning and danger.
|
|
||||||
{{< hint [info|warning|danger] >}} **Markdown content** Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa {{< /hint >}} Example # Markdown content
|
|
||||||
Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa Markdown content">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="Hints # Hint shortcode can be used as hint/alerts/notification block.
|
|
||||||
There are 3 colors to choose: info, warning and danger.
|
|
||||||
{{< hint [info|warning|danger] >}} **Markdown content** Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa {{< /hint >}} Example # Markdown content
|
|
||||||
Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa Markdown content" />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/shortcodes/hints/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>Hints | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Hints</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="hints">
|
|
||||||
Hints
|
|
||||||
<a class="anchor" href="#hints">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>Hint shortcode can be used as hint/alerts/notification block.<br>
|
|
||||||
There are 3 colors to choose: <code>info</code>, <code>warning</code> and <code>danger</code>.</p>
|
|
||||||
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-tpl" data-lang="tpl"><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#a6e22e">hint</span> <span style="color:#f92672">[</span><span style="color:#a6e22e">info</span><span style="color:#f92672">|</span><span style="color:#a6e22e">warning</span><span style="color:#f92672">|</span><span style="color:#a6e22e">danger</span><span style="color:#f92672">]</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span><span style="display:flex;"><span>**Markdown content**
|
|
||||||
</span></span><span style="display:flex;"><span>Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat
|
|
||||||
</span></span><span style="display:flex;"><span>stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa
|
|
||||||
</span></span><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#f92672">/</span><span style="color:#a6e22e">hint</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span></code></pre></div><h2 id="example">
|
|
||||||
Example
|
|
||||||
<a class="anchor" href="#example">#</a>
|
|
||||||
</h2>
|
|
||||||
<blockquote class="book-hint info">
|
|
||||||
<strong>Markdown content</strong><br>
|
|
||||||
Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat
|
|
||||||
stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa
|
|
||||||
</blockquote>
|
|
||||||
|
|
||||||
<blockquote class="book-hint warning">
|
|
||||||
<strong>Markdown content</strong><br>
|
|
||||||
Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat
|
|
||||||
stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa
|
|
||||||
</blockquote>
|
|
||||||
|
|
||||||
<blockquote class="book-hint danger">
|
|
||||||
<strong>Markdown content</strong><br>
|
|
||||||
Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat
|
|
||||||
stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa
|
|
||||||
</blockquote>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/shortcodes/hints.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,231 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/shortcodes/" />
|
|
||||||
<title>Shortcodes | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://academics.jamesflare.com/docs/shortcodes/index.xml" title="Academic Resources" />
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Shortcodes</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents"></nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"></article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/shortcodes/_index.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents"></nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,95 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Academic Resources</title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/shortcodes/</link>
|
|
||||||
<description>Recent content on Academic Resources</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>zh</language><atom:link href="https://academics.jamesflare.com/docs/shortcodes/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
<item>
|
|
||||||
<title></title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/shortcodes/buttons/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/shortcodes/buttons/</guid>
|
|
||||||
<description> Buttons # Buttons are styled links that can lead to local page or external link.
|
|
||||||
Example # {{&lt; button relref=&#34;/&#34; [class=&#34;...&#34;] &gt;}}Get Home{{&lt; /button &gt;}} {{&lt; button href=&#34;https://github.com/alex-shpak/hugo-book&#34; &gt;}}Contribute{{&lt; /button &gt;}} Get Home Contribute </description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title></title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/shortcodes/columns/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/shortcodes/columns/</guid>
|
|
||||||
<description>Columns # Columns help organize shorter pieces of content horizontally for readability.
|
|
||||||
{{&lt; columns &gt;}} &lt;!-- begin columns block --&gt; # Left Content Lorem markdownum insigne... &lt;---&gt; &lt;!-- magic separator, between columns --&gt; # Mid Content Lorem markdownum insigne... &lt;---&gt; &lt;!-- magic separator, between columns --&gt; # Right Content Lorem markdownum insigne... {{&lt; /columns &gt;}} Example # Left Content # Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat stringit, frustra Saturnius uteroque inter!</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title></title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/shortcodes/details/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/shortcodes/details/</guid>
|
|
||||||
<description> Details # Details shortcode is a helper for details html5 element. It is going to replace expand shortcode.
|
|
||||||
Example # {{&lt; details &#34;Title&#34; [open] &gt;}} ## Markdown content Lorem markdownum insigne... {{&lt; /details &gt;}} {{&lt; details title=&#34;Title&#34; open=true &gt;}} ## Markdown content Lorem markdownum insigne... {{&lt; /details &gt;}} Title Markdown content # Lorem markdownum insigne&hellip; </description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title></title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/shortcodes/expand/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/shortcodes/expand/</guid>
|
|
||||||
<description>Expand # Expand shortcode can help to decrease clutter on screen by hiding part of text. Expand content by clicking on it.
|
|
||||||
Example # Default # {{&lt; expand &gt;}} ## Markdown content Lorem markdownum insigne... {{&lt; /expand &gt;}} Expand ↕ Markdown content # Lorem markdownum insigne&hellip; With Custom Label # {{&lt; expand &#34;Custom Label&#34; &#34;...&#34; &gt;}} ## Markdown content Lorem markdownum insigne... {{&lt; /expand &gt;}} Custom Label ... Markdown content # Lorem markdownum insigne.</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title></title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/shortcodes/hints/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/shortcodes/hints/</guid>
|
|
||||||
<description>Hints # Hint shortcode can be used as hint/alerts/notification block.
|
|
||||||
There are 3 colors to choose: info, warning and danger.
|
|
||||||
{{&lt; hint [info|warning|danger] &gt;}} **Markdown content** Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa {{&lt; /hint &gt;}} Example # Markdown content
|
|
||||||
Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa Markdown content</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title></title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/shortcodes/katex/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/shortcodes/katex/</guid>
|
|
||||||
<description>KaTeX # KaTeX shortcode let you render math typesetting in markdown document. See KaTeX
|
|
||||||
Example # {{&lt; katex [display] [class=&#34;text-center&#34;] &gt;}} f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi {{&lt; /katex &gt;}} \[
|
|
||||||
f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi
|
|
||||||
\] Display Mode Example # Here is some inline example: \(\pi(x)\) , rendered in the same line. And below is display example, having display: block \[
|
|
||||||
f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi
|
|
||||||
\] Text continues here.</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title></title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/shortcodes/mermaid/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/shortcodes/mermaid/</guid>
|
|
||||||
<description>Mermaid Chart # MermaidJS is library for generating svg charts and diagrams from text.
|
|
||||||
Override Mermaid Initialization Config
|
|
||||||
To override the initialization config for Mermaid, create a mermaid.json file in your assets folder!
|
|
||||||
Example # {{&lt; mermaid [class=&#34;text-center&#34;]&gt;}} stateDiagram-v2 State1: The state with a note note right of State1 Important information! You can write notes. end note State1 --&gt; State2 note left of State2 : This is the note to the left.</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title></title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/shortcodes/tabs/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/shortcodes/tabs/</guid>
|
|
||||||
<description>Tabs # Tabs let you organize content by context, for example installation instructions for each supported platform.
|
|
||||||
{{&lt; tabs &#34;uniqueid&#34; &gt;}} {{&lt; tab &#34;MacOS&#34; &gt;}} # MacOS Content {{&lt; /tab &gt;}} {{&lt; tab &#34;Linux&#34; &gt;}} # Linux Content {{&lt; /tab &gt;}} {{&lt; tab &#34;Windows&#34; &gt;}} # Windows Content {{&lt; /tab &gt;}} {{&lt; /tabs &gt;}} Example # MacOS MacOS # This is tab MacOS content.
|
|
||||||
Lorem markdownum insigne. Olympo signis Delphis!</description>
|
|
||||||
@@ -1,292 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="KaTeX # KaTeX shortcode let you render math typesetting in markdown document. See KaTeX
|
|
||||||
Example # {{< katex [display] [class="text-center"] >}} f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi {{< /katex >}} \[
|
|
||||||
f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi
|
|
||||||
\] Display Mode Example # Here is some inline example: \(\pi(x)\) , rendered in the same line. And below is display example, having display: block \[
|
|
||||||
f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi
|
|
||||||
\] Text continues here.">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="KaTeX # KaTeX shortcode let you render math typesetting in markdown document. See KaTeX
|
|
||||||
Example # {{< katex [display] [class="text-center"] >}} f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi {{< /katex >}} \[
|
|
||||||
f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi
|
|
||||||
\] Display Mode Example # Here is some inline example: \(\pi(x)\) , rendered in the same line. And below is display example, having display: block \[
|
|
||||||
f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi
|
|
||||||
\] Text continues here." />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/shortcodes/katex/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>Katex | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Katex</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
<li><a href="#display-mode-example">Display Mode Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="katex">
|
|
||||||
KaTeX
|
|
||||||
<a class="anchor" href="#katex">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>KaTeX shortcode let you render math typesetting in markdown document. See <a href="https://katex.org/">KaTeX</a></p>
|
|
||||||
<h2 id="example">
|
|
||||||
Example
|
|
||||||
<a class="anchor" href="#example">#</a>
|
|
||||||
</h2>
|
|
||||||
<div class="book-columns flex flex-wrap">
|
|
||||||
|
|
||||||
<div class="flex-even markdown-inner">
|
|
||||||
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-latex" data-lang="latex"><span style="display:flex;"><span>{{< katex [display] [class="text-center"] >}}
|
|
||||||
</span></span><span style="display:flex;"><span>f(x) = <span style="color:#66d9ef">\int</span>_{-<span style="color:#66d9ef">\infty</span>}^<span style="color:#66d9ef">\infty\hat</span> f(<span style="color:#66d9ef">\xi</span>)<span style="color:#66d9ef">\,</span>e^{2 <span style="color:#66d9ef">\pi</span> i <span style="color:#66d9ef">\xi</span> x}<span style="color:#66d9ef">\,</span>d<span style="color:#66d9ef">\xi</span>
|
|
||||||
</span></span><span style="display:flex;"><span>{{< /katex >}}
|
|
||||||
</span></span></code></pre></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="flex-even markdown-inner">
|
|
||||||
<link rel="stylesheet" href="/katex/katex.min.css" />
|
|
||||||
<script defer src="/katex/katex.min.js"></script>
|
|
||||||
<script defer src="/katex/auto-render.min.js" onload="renderMathInElement(document.body);"></script><span>
|
|
||||||
\[
|
|
||||||
f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi
|
|
||||||
\]
|
|
||||||
</span>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2 id="display-mode-example">
|
|
||||||
Display Mode Example
|
|
||||||
<a class="anchor" href="#display-mode-example">#</a>
|
|
||||||
</h2>
|
|
||||||
<p>Here is some inline example: <span>
|
|
||||||
\(\pi(x)\)
|
|
||||||
</span>
|
|
||||||
, rendered in the same line. And below is <code>display</code> example, having <code>display: block</code>
|
|
||||||
<span>
|
|
||||||
\[
|
|
||||||
f(x) = \int_{-\infty}^\infty\hat f(\xi)\,e^{2 \pi i \xi x}\,d\xi
|
|
||||||
\]
|
|
||||||
</span>
|
|
||||||
|
|
||||||
Text continues here.</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/shortcodes/katex.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
<li><a href="#display-mode-example">Display Mode Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,304 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="Mermaid Chart # MermaidJS is library for generating svg charts and diagrams from text.
|
|
||||||
Override Mermaid Initialization Config
|
|
||||||
To override the initialization config for Mermaid, create a mermaid.json file in your assets folder!
|
|
||||||
Example # {{< mermaid [class="text-center"]>}} stateDiagram-v2 State1: The state with a note note right of State1 Important information! You can write notes. end note State1 --> State2 note left of State2 : This is the note to the left.">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="Mermaid Chart # MermaidJS is library for generating svg charts and diagrams from text.
|
|
||||||
Override Mermaid Initialization Config
|
|
||||||
To override the initialization config for Mermaid, create a mermaid.json file in your assets folder!
|
|
||||||
Example # {{< mermaid [class="text-center"]>}} stateDiagram-v2 State1: The state with a note note right of State1 Important information! You can write notes. end note State1 --> State2 note left of State2 : This is the note to the left." />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/shortcodes/mermaid/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>Mermaid | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Mermaid</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="mermaid-chart">
|
|
||||||
Mermaid Chart
|
|
||||||
<a class="anchor" href="#mermaid-chart">#</a>
|
|
||||||
</h1>
|
|
||||||
<p><a href="https://mermaid-js.github.io/">MermaidJS</a> is library for generating svg charts and diagrams from text.</p>
|
|
||||||
<blockquote class="book-hint info">
|
|
||||||
<p><strong>Override Mermaid Initialization Config</strong></p>
|
|
||||||
<p>To override the <a href="https://mermaid-js.github.io/mermaid/#/Setup">initialization config</a> for Mermaid,
|
|
||||||
create a <code>mermaid.json</code> file in your <code>assets</code> folder!</p>
|
|
||||||
|
|
||||||
</blockquote>
|
|
||||||
|
|
||||||
<h2 id="example">
|
|
||||||
Example
|
|
||||||
<a class="anchor" href="#example">#</a>
|
|
||||||
</h2>
|
|
||||||
<div class="book-columns flex flex-wrap">
|
|
||||||
|
|
||||||
<div class="flex-even markdown-inner">
|
|
||||||
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-tpl" data-lang="tpl"><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#a6e22e">mermaid</span> <span style="color:#f92672">[</span><span style="color:#a6e22e">class</span><span style="color:#f92672">=</span><span style="color:#e6db74">"text-center"</span><span style="color:#f92672">]></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span><span style="display:flex;"><span>stateDiagram-v2
|
|
||||||
</span></span><span style="display:flex;"><span> State1: The state with a note
|
|
||||||
</span></span><span style="display:flex;"><span> note right of State1
|
|
||||||
</span></span><span style="display:flex;"><span> Important information! You can write
|
|
||||||
</span></span><span style="display:flex;"><span> notes.
|
|
||||||
</span></span><span style="display:flex;"><span> end note
|
|
||||||
</span></span><span style="display:flex;"><span> State1 --> State2
|
|
||||||
</span></span><span style="display:flex;"><span> note left of State2 : This is the note to the left.
|
|
||||||
</span></span><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#f92672">/</span><span style="color:#a6e22e">mermaid</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span></code></pre></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="flex-even markdown-inner">
|
|
||||||
<script src="/mermaid.min.js"></script>
|
|
||||||
<script>mermaid.initialize({
|
|
||||||
"flowchart": {
|
|
||||||
"useMaxWidth":true
|
|
||||||
},
|
|
||||||
"theme": "default"
|
|
||||||
}
|
|
||||||
)</script>
|
|
||||||
<p class="mermaid">
|
|
||||||
stateDiagram-v2
|
|
||||||
State1: The state with a note
|
|
||||||
note right of State1
|
|
||||||
Important information! You can write
|
|
||||||
notes.
|
|
||||||
end note
|
|
||||||
State1 --> State2
|
|
||||||
note left of State2 : This is the note to the left.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/shortcodes/mermaid.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="First page # Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
||||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="First page # Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
||||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/shortcodes/section/first-page/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>First Page | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>First Page</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents"></nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="first-page">
|
|
||||||
First page
|
|
||||||
<a class="anchor" href="#first-page">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
|
|
||||||
<!--more-->
|
|
||||||
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/shortcodes/section/first-page.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents"></nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,274 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="Section # Section renders pages in section as definition list, using title and description.
|
|
||||||
Example # {{< section >}} First Page First page # Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/shortcodes/section/" />
|
|
||||||
<title>Section | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://academics.jamesflare.com/docs/shortcodes/section/index.xml" title="Academic Resources" />
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Section</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="section">
|
|
||||||
Section
|
|
||||||
<a class="anchor" href="#section">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>Section renders pages in section as definition list, using title and description.</p>
|
|
||||||
<h2 id="example">
|
|
||||||
Example
|
|
||||||
<a class="anchor" href="#example">#</a>
|
|
||||||
</h2>
|
|
||||||
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-tpl" data-lang="tpl"><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#a6e22e">section</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span></code></pre></div><dl>
|
|
||||||
|
|
||||||
<dt>
|
|
||||||
<a href="/docs/shortcodes/section/first-page/">First Page</a>
|
|
||||||
</dt>
|
|
||||||
<dd class="markdown-inner">
|
|
||||||
First page # Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
||||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt>
|
|
||||||
<a href="/docs/shortcodes/section/second-page/">Second Page</a>
|
|
||||||
</dt>
|
|
||||||
<dd class="markdown-inner">
|
|
||||||
Second Page # Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
||||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/shortcodes/section/_index.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Academic Resources</title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/shortcodes/section/</link>
|
|
||||||
<description>Recent content on Academic Resources</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>zh</language><atom:link href="https://academics.jamesflare.com/docs/shortcodes/section/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
<item>
|
|
||||||
<title></title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/shortcodes/section/first-page/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/shortcodes/section/first-page/</guid>
|
|
||||||
<description>First page # Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
||||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title></title>
|
|
||||||
<link>https://academics.jamesflare.com/docs/shortcodes/section/second-page/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
|
||||||
|
|
||||||
<guid>https://academics.jamesflare.com/docs/shortcodes/section/second-page/</guid>
|
|
||||||
<description>Second Page # Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
||||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
||||||
@@ -1,245 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="Second Page # Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
||||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="Second Page # Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
||||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/shortcodes/section/second-page/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>Second Page | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Second Page</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents"></nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="second-page">
|
|
||||||
Second Page
|
|
||||||
<a class="anchor" href="#second-page">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
|
|
||||||
<!--more-->
|
|
||||||
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/shortcodes/section/second-page.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents"></nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,301 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="Tabs # Tabs let you organize content by context, for example installation instructions for each supported platform.
|
|
||||||
{{< tabs "uniqueid" >}} {{< tab "MacOS" >}} # MacOS Content {{< /tab >}} {{< tab "Linux" >}} # Linux Content {{< /tab >}} {{< tab "Windows" >}} # Windows Content {{< /tab >}} {{< /tabs >}} Example # MacOS MacOS # This is tab MacOS content.
|
|
||||||
Lorem markdownum insigne. Olympo signis Delphis!">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="Tabs # Tabs let you organize content by context, for example installation instructions for each supported platform.
|
|
||||||
{{< tabs "uniqueid" >}} {{< tab "MacOS" >}} # MacOS Content {{< /tab >}} {{< tab "Linux" >}} # Linux Content {{< /tab >}} {{< tab "Windows" >}} # Windows Content {{< /tab >}} {{< /tabs >}} Example # MacOS MacOS # This is tab MacOS content.
|
|
||||||
Lorem markdownum insigne. Olympo signis Delphis!" />
|
|
||||||
<meta property="og:type" content="article" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/shortcodes/tabs/" /><meta property="article:section" content="docs" />
|
|
||||||
|
|
||||||
<meta property="article:modified_time" content="2023-01-20T02:32:06+08:00" />
|
|
||||||
<title>Tabs | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>Tabs</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><h1 id="tabs">
|
|
||||||
Tabs
|
|
||||||
<a class="anchor" href="#tabs">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>Tabs let you organize content by context, for example installation instructions for each supported platform.</p>
|
|
||||||
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-tpl" data-lang="tpl"><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#a6e22e">tabs</span> <span style="color:#e6db74">"uniqueid"</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#a6e22e">tab</span> <span style="color:#e6db74">"MacOS"</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span> # MacOS Content <span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#f92672">/</span><span style="color:#a6e22e">tab</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#a6e22e">tab</span> <span style="color:#e6db74">"Linux"</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span> # Linux Content <span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#f92672">/</span><span style="color:#a6e22e">tab</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#a6e22e">tab</span> <span style="color:#e6db74">"Windows"</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span> # Windows Content <span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#f92672">/</span><span style="color:#a6e22e">tab</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span><span style="display:flex;"><span><span style="color:#75715e">{{</span><span style="color:#f92672"><</span> <span style="color:#f92672">/</span><span style="color:#a6e22e">tabs</span> <span style="color:#f92672">></span><span style="color:#75715e">}}</span>
|
|
||||||
</span></span></code></pre></div><h2 id="example">
|
|
||||||
Example
|
|
||||||
<a class="anchor" href="#example">#</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-tabs"><input type="radio" class="toggle" name="tabs-uniqueid" id="tabs-uniqueid-0" checked="checked" />
|
|
||||||
<label for="tabs-uniqueid-0">MacOS</label>
|
|
||||||
<div class="book-tabs-content markdown-inner"><h1 id="macos">
|
|
||||||
MacOS
|
|
||||||
<a class="anchor" href="#macos">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>This is tab <strong>MacOS</strong> content.</p>
|
|
||||||
<p>Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat
|
|
||||||
stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa
|
|
||||||
protulit, sed sed aere valvis inhaesuro Pallas animam: qui <em>quid</em>, ignes.
|
|
||||||
Miseratus fonte Ditis conubia.</p>
|
|
||||||
</div><input type="radio" class="toggle" name="tabs-uniqueid" id="tabs-uniqueid-1" />
|
|
||||||
<label for="tabs-uniqueid-1">Linux</label>
|
|
||||||
<div class="book-tabs-content markdown-inner"><h1 id="linux">
|
|
||||||
Linux
|
|
||||||
<a class="anchor" href="#linux">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>This is tab <strong>Linux</strong> content.</p>
|
|
||||||
<p>Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat
|
|
||||||
stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa
|
|
||||||
protulit, sed sed aere valvis inhaesuro Pallas animam: qui <em>quid</em>, ignes.
|
|
||||||
Miseratus fonte Ditis conubia.</p>
|
|
||||||
</div><input type="radio" class="toggle" name="tabs-uniqueid" id="tabs-uniqueid-2" />
|
|
||||||
<label for="tabs-uniqueid-2">Windows</label>
|
|
||||||
<div class="book-tabs-content markdown-inner"><h1 id="windows">
|
|
||||||
Windows
|
|
||||||
<a class="anchor" href="#windows">#</a>
|
|
||||||
</h1>
|
|
||||||
<p>This is tab <strong>Windows</strong> content.</p>
|
|
||||||
<p>Lorem markdownum insigne. Olympo signis Delphis! Retexi Nereius nova develat
|
|
||||||
stringit, frustra Saturnius uteroque inter! Oculis non ritibus Telethusa
|
|
||||||
protulit, sed sed aere valvis inhaesuro Pallas animam: qui <em>quid</em>, ignes.
|
|
||||||
Miseratus fonte Ditis conubia.</p>
|
|
||||||
</div></div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
<div><a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/commit/d2b7c62a10e2c7f8db801c881ab595830b3f7a7c" title='Last modified by JamesFlare1212 | January 20, 2023' target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/calendar.svg" class="book-icon" alt="Calendar" />
|
|
||||||
<span>January 20, 2023</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/shortcodes/tabs.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents">
|
|
||||||
<ul>
|
|
||||||
<li><a href="#example">Example</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,233 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<meta name="description" content="English is not available now, use Chinese">
|
|
||||||
<meta name="theme-color" content="#FFFFFF">
|
|
||||||
<meta name="color-scheme" content="light dark"><meta property="og:title" content="" />
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:url" content="https://academics.jamesflare.com/docs/%E5%AD%A6%E6%9C%AF%E8%B5%84%E6%BA%90/" />
|
|
||||||
<title>学术资源 | Academic Resources</title>
|
|
||||||
<link rel="manifest" href="/manifest.json">
|
|
||||||
<link rel="icon" href="/favicon.png" type="image/x-icon">
|
|
||||||
<link rel="alternate" hreflang="zh" href="https://academics.jamesflare.com/zh/docs/%E5%AD%A6%E6%9C%AF%E8%B5%84%E6%BA%90/" title="学术资源">
|
|
||||||
<link rel="stylesheet" href="/book.min.f8de3645fe00591b41524aee174e19edd98a22255a2930a0cdc82a94835ba387.css" integrity="sha256-+N42Rf4AWRtBUkruF04Z7dmKIiVaKTCgzcgqlINbo4c=" crossorigin="anonymous">
|
|
||||||
<script defer src="/flexsearch.min.js"></script>
|
|
||||||
<script defer src="/en.search.min.a96ff1ebe93c483a6fabdb5dfeca9c5064addcd18e5db5d46117139d2e58ff1e.js" integrity="sha256-qW/x6+k8SDpvq9td/sqcUGSt3NGOXbXUYRcTnS5Y/x4=" crossorigin="anonymous"></script>
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://academics.jamesflare.com/docs/%E5%AD%A6%E6%9C%AF%E8%B5%84%E6%BA%90/index.xml" title="Academic Resources" />
|
|
||||||
<!--
|
|
||||||
Made with Book Theme
|
|
||||||
https://github.com/alex-shpak/hugo-book
|
|
||||||
-->
|
|
||||||
<link rel="stylesheet" href="https://academics.jamesflare.com/css/custom.css">
|
|
||||||
|
|
||||||
<script type="text/javascript" src="https://academics.jamesflare.com/js/custom.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</head>
|
|
||||||
<body dir="ltr">
|
|
||||||
<input type="checkbox" class="hidden toggle" id="menu-control" />
|
|
||||||
<input type="checkbox" class="hidden toggle" id="toc-control" />
|
|
||||||
<main class="container flex">
|
|
||||||
<aside class="book-menu">
|
|
||||||
<div class="book-menu-content">
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<h2 class="book-brand">
|
|
||||||
<a class="flex align-center" href="/"><span>Academic Resources</span>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-search">
|
|
||||||
<input type="text" id="book-search-input" placeholder="Search" aria-label="Search" maxlength="64" data-hotkeys="s/" />
|
|
||||||
<div class="book-search-spinner hidden"></div>
|
|
||||||
<ul id="book-search-results"></ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="book-languages">
|
|
||||||
<li>
|
|
||||||
<input type="checkbox" id="languages" class="toggle" />
|
|
||||||
<label for="languages" class="flex justify-between">
|
|
||||||
<a role="button" class="flex align-center">
|
|
||||||
<img src="/svg/translate.svg" class="book-icon" alt="Languages" />
|
|
||||||
English
|
|
||||||
</a>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="https://academics.jamesflare.com/zh/docs/%E5%AD%A6%E6%9C%AF%E8%B5%84%E6%BA%90/">
|
|
||||||
Chinese
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/posts/" >
|
|
||||||
动态
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){var e=document.querySelector("aside .book-menu-content");addEventListener("beforeunload",function(){localStorage.setItem("menu.scrollTop",e.scrollTop)}),e.scrollTop=localStorage.getItem("menu.scrollTop")})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<div class="book-page">
|
|
||||||
<header class="book-header">
|
|
||||||
|
|
||||||
<div class="flex align-center justify-between">
|
|
||||||
<label for="menu-control">
|
|
||||||
<img src="/svg/menu.svg" class="book-icon" alt="Menu" />
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<strong>学术资源</strong>
|
|
||||||
|
|
||||||
<label for="toc-control">
|
|
||||||
|
|
||||||
<img src="/svg/toc.svg" class="book-icon" alt="Table of Contents" />
|
|
||||||
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="hidden clearfix">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents"></nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article class="markdown"><p>English is not available now, use <a href="/zh/docs/%e5%ad%a6%e6%9c%af%e8%b5%84%e6%ba%90/">Chinese</a></p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<footer class="book-footer">
|
|
||||||
|
|
||||||
<div class="flex flex-wrap justify-between">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="flex align-center" href="https://github.com/JamesFlare1212/SCDocs/edit/dev/content.en/docs/%e5%ad%a6%e6%9c%af%e8%b5%84%e6%ba%90/_index.md" target="_blank" rel="noopener">
|
|
||||||
<img src="/svg/edit.svg" class="book-icon" alt="Edit" />
|
|
||||||
<span>Edit this page</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>(function(){function e(e){const t=window.getSelection(),n=document.createRange();n.selectNodeContents(e),t.removeAllRanges(),t.addRange(n)}document.querySelectorAll("pre code").forEach(t=>{t.addEventListener("click",function(){if(window.getSelection().toString())return;e(t.parentElement),navigator.clipboard&&navigator.clipboard.writeText(t.parentElement.textContent)})})})()</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="book-comments">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<label for="menu-control" class="hidden book-menu-overlay"></label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<aside class="book-toc">
|
|
||||||
<div class="book-toc-content">
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="TableOfContents"></nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<script src="/js/pangu.min.js"></script>
|
|
||||||
<script>pangu.spacingPage();</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user