mirror of
https://github.com/McShelby/hugo-theme-relearn
synced 2025-04-30 13:33:34 +08:00
print: add option to print whole chapter #230
This commit is contained in:
parent
70b4143327
commit
0dd92e332b
@ -12,6 +12,7 @@ The theme is a fork of the great [Learn theme](https://github.com/matcornic/hugo
|
|||||||
|
|
||||||
- Usable offline, no external dependencies
|
- Usable offline, no external dependencies
|
||||||
- Automatic Search
|
- Automatic Search
|
||||||
|
- Print whole chapters or even the complete site
|
||||||
- Multilingual mode for English, Arabic, Simplified Chinese, Dutch, French, German, Hindi, Indonesian, Japanese, Korean, Portuguese, Russian, Spanish, Vietnamese, Turkish
|
- Multilingual mode for English, Arabic, Simplified Chinese, Dutch, French, German, Hindi, Indonesian, Japanese, Korean, Portuguese, Russian, Spanish, Vietnamese, Turkish
|
||||||
- Unlimited menu levels
|
- Unlimited menu levels
|
||||||
- Automatic next/prev buttons to navigate through menu entries
|
- Automatic next/prev buttons to navigate through menu entries
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
[module]
|
[module]
|
||||||
[module.hugoVersion]
|
[module.hugoVersion]
|
||||||
min = "0.93.0"
|
min = "0.93.0"
|
||||||
|
|
||||||
|
[outputFormats]
|
||||||
|
[outputFormats.PRINT]
|
||||||
|
name= "PRINT"
|
||||||
|
baseName = "index"
|
||||||
|
path = "_print"
|
||||||
|
isHTML = true
|
||||||
|
mediaType = 'text/html'
|
||||||
|
permalinkable = false
|
||||||
|
@ -43,9 +43,13 @@ title = "Hugo Relearn Documentation"
|
|||||||
mermaidInitialize = "{ \"securityLevel\": \"loose\" }"
|
mermaidInitialize = "{ \"securityLevel\": \"loose\" }"
|
||||||
|
|
||||||
[outputs]
|
[outputs]
|
||||||
# add JSON to the home page to support lunr search; This is a mandatory setting
|
# add JSON to the home to support lunr search; This is a mandatory setting
|
||||||
# for the search functionality
|
# for the search functionality
|
||||||
home = ["HTML", "RSS", "JSON"]
|
# add PRINT to home, section and page to activate feature to print whole
|
||||||
|
# chapters
|
||||||
|
home = ["HTML", "RSS", "PRINT", "JSON"]
|
||||||
|
section = ["HTML", "RSS", "PRINT"]
|
||||||
|
page = ["HTML", "RSS", "PRINT"]
|
||||||
|
|
||||||
[markup]
|
[markup]
|
||||||
[markup.highlight]
|
[markup.highlight]
|
||||||
|
@ -18,6 +18,7 @@ See [what's new]({{% relref "basics/migration" %}}) within the latest update.
|
|||||||
|
|
||||||
* Usable offline, no external dependencies
|
* Usable offline, no external dependencies
|
||||||
* [Automatic Search]({{%relref "basics/configuration#activate-search" %}})
|
* [Automatic Search]({{%relref "basics/configuration#activate-search" %}})
|
||||||
|
* [Print]({{%relref "basics/configuration#activate-print-support" %}}) whole chapters or even the complete site
|
||||||
* [Multilingual mode]({{%relref "cont/i18n" %}}) for English, Arabic, Simplified Chinese, Dutch, French, German, Hindi, Indonesian, Japanese, Korean, Portuguese, Russian, Spanish, Vietnamese, Turkish
|
* [Multilingual mode]({{%relref "cont/i18n" %}}) for English, Arabic, Simplified Chinese, Dutch, French, German, Hindi, Indonesian, Japanese, Korean, Portuguese, Russian, Spanish, Vietnamese, Turkish
|
||||||
* Unlimited menu levels
|
* Unlimited menu levels
|
||||||
* Automatic next/prev buttons to navigate through menu entries
|
* Automatic next/prev buttons to navigate through menu entries
|
||||||
|
@ -89,7 +89,7 @@ If not already present, add the follow lines in the same `config.toml` file.
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
[outputs]
|
[outputs]
|
||||||
home = [ "HTML", "RSS", "JSON"]
|
home = ["HTML", "RSS", "JSON"]
|
||||||
```
|
```
|
||||||
|
|
||||||
Relearn theme uses the last improvement available in hugo version 20+ to generate a json index file ready to be consumed by lunr.js javascript search engine.
|
Relearn theme uses the last improvement available in hugo version 20+ to generate a json index file ready to be consumed by lunr.js javascript search engine.
|
||||||
@ -97,6 +97,23 @@ Relearn theme uses the last improvement available in hugo version 20+ to generat
|
|||||||
> Hugo generate lunrjs index.json at the root of public folder.
|
> Hugo generate lunrjs index.json at the root of public folder.
|
||||||
> When you build the site with `hugo server`, hugo generates it internally and of course it doesn’t show up in the filesystem
|
> When you build the site with `hugo server`, hugo generates it internally and of course it doesn’t show up in the filesystem
|
||||||
|
|
||||||
|
## Activate print support
|
||||||
|
|
||||||
|
You can activate print support to add the capability to print whole chapters or even the complete site. Just add the `PRINT` output format to your home, section and page in your `config.toml` as seen below:
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[outputs]
|
||||||
|
home = ["HTML", "RSS", "PRINT", "JSON"]
|
||||||
|
section = ["HTML", "RSS", "PRINT"]
|
||||||
|
page = ["HTML", "RSS", "PRINT"]
|
||||||
|
```
|
||||||
|
|
||||||
|
This will add a little printer icon in the top bar. It will switch the page to print preview when clicked. You can then send this page to the printer by using your browser's usual print functionality.
|
||||||
|
|
||||||
|
{{% notice note %}}
|
||||||
|
While colors of your chosen color variant are reset to the theme's light standard values for printing, this does not apply for Mermaid diagrams and Swagger/OpenAPI Specification. Those will still use the colors of your chosen color variant which may cause a non coherent look on paper.
|
||||||
|
{{% /notice %}}
|
||||||
|
|
||||||
## Mermaid
|
## Mermaid
|
||||||
|
|
||||||
The Mermaid configuration parameters can also be set on a specific page. In this case, the global parameter would be overwritten by the local one. See [Mermaid]({{< relref "shortcodes/mermaid.md" >}}) for additional documentation.
|
The Mermaid configuration parameters can also be set on a specific page. In this case, the global parameter would be overwritten by the local one. See [Mermaid]({{< relref "shortcodes/mermaid.md" >}}) for additional documentation.
|
||||||
|
@ -18,6 +18,8 @@ This document shows you what's new in the latest release. For a detailed list of
|
|||||||
|
|
||||||
- **Breaking**: If you had previously overwritten the `custom-footer.html` partial to add visual elements below the content of your page, you have to move this content to the new partial `content-footer.html`. `custom-footer.html` was never meant to contain HTML other than additional styles and JavaScript.
|
- **Breaking**: If you had previously overwritten the `custom-footer.html` partial to add visual elements below the content of your page, you have to move this content to the new partial `content-footer.html`. `custom-footer.html` was never meant to contain HTML other than additional styles and JavaScript.
|
||||||
|
|
||||||
|
- **New**: You can activate [print support]({{%relref "basics/configuration#activate-print-support" %}}) in your `config.toml` to add the capability to print whole chapters or even the complete site.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 3.3.0
|
## 3.3.0
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
+++
|
+++
|
||||||
|
description = "Some testing for different styles used in syntax highlightning and preformatted blocks"
|
||||||
title = "Code"
|
title = "Code"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
+++
|
+++
|
||||||
|
description = "Some test'n fer different styles used 'n rules highlightn'n an' preformatted blocks"
|
||||||
title = "Code"
|
title = "Code"
|
||||||
+++
|
+++
|
||||||
{{< piratify >}}
|
{{< piratify >}}
|
58
exampleSite/content/tests/images/_index.en.md
Normal file
58
exampleSite/content/tests/images/_index.en.md
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
+++
|
||||||
|
description = "Some testing for different styles of image links"
|
||||||
|
title = "Images"
|
||||||
|
+++
|
||||||
|
|
||||||
|
Some testing for different styles of image links.
|
||||||
|
|
||||||
|
## Markdown
|
||||||
|
|
||||||
|
### Relative to page
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### Relative to page up level
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### Static
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### External fully qualified
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### External without scheme
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### External without scheme and scheme separator
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## HTML
|
||||||
|
|
||||||
|
### Relative to page
|
||||||
|
|
||||||
|
<p><img src="images/magic.gif?classes=shadow&height=50px"></p>
|
||||||
|
|
||||||
|
### Relative to page up level
|
||||||
|
|
||||||
|
<p><img src="../images/images/magic.gif?classes=shadow&height=50px"></p>
|
||||||
|
|
||||||
|
### Static
|
||||||
|
|
||||||
|
<p><img src="/images/logo.svg?classes=shadow&height=50px"></p>
|
||||||
|
|
||||||
|
### External fully qualified
|
||||||
|
|
||||||
|
<p><img src="https://octodex.github.com/images/minion.png?classes=shadow&height=50px"></p>
|
||||||
|
|
||||||
|
### External without scheme
|
||||||
|
|
||||||
|
<p><img src="//octodex.github.com/images/minion.png?classes=shadow&height=50px"></p>
|
||||||
|
|
||||||
|
### External without scheme and scheme separator
|
||||||
|
|
||||||
|
<p><img src="octodex.github.com/images/minion.png?classes=shadow&height=50px"></p>
|
5
exampleSite/content/tests/images/_index.pir.md
Normal file
5
exampleSite/content/tests/images/_index.pir.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
+++
|
||||||
|
description = "Some test'n fer different styles o' image links"
|
||||||
|
title = "Images"
|
||||||
|
+++
|
||||||
|
{{< piratify >}}
|
BIN
exampleSite/content/tests/images/images/magic.gif
Normal file
BIN
exampleSite/content/tests/images/images/magic.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
20
exampleSite/content/tests/links/_index.en.md
Normal file
20
exampleSite/content/tests/links/_index.en.md
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
+++
|
||||||
|
description = "Some testing for different styles of links"
|
||||||
|
title = "Links"
|
||||||
|
+++
|
||||||
|
|
||||||
|
Some testing for different styles of links.
|
||||||
|
|
||||||
|
## Markdown
|
||||||
|
|
||||||
|
### Relative to page:
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### Relative to page up level:
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### Static:
|
||||||
|
|
||||||
|

|
5
exampleSite/content/tests/links/_index.pir.md
Normal file
5
exampleSite/content/tests/links/_index.pir.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
+++
|
||||||
|
description = "Some test'n fer different styles o' links"
|
||||||
|
title = "Links"
|
||||||
|
+++
|
||||||
|
{{< piratify >}}
|
@ -19,6 +19,9 @@ other = "الذهاب إلى الصفحة الرئيسية"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "حرر"
|
other = "حرر"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = ""
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "المزيد"
|
other = "المزيد"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "Gehe zur Homepage"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "Bearbeiten"
|
other = "Bearbeiten"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = "Ganzes Kapitel drucken"
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "Mehr"
|
other = "Mehr"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "Go to homepage"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "Edit"
|
other = "Edit"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = "Print whole chapter"
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "More"
|
other = "More"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "Ir al inicio"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "Editar"
|
other = "Editar"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = ""
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "Más"
|
other = "Más"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "Vers la page d'accueil"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "Éditer"
|
other = "Éditer"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = ""
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "Aller plus loin"
|
other = "Aller plus loin"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "मुख्य पृष्ठ पर जाऐ"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "संपादन करना"
|
other = "संपादन करना"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = ""
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "अधिक सामग्री दिखाएं"
|
other = "अधिक सामग्री दिखाएं"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "Ke halaman depan"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "Mengedit"
|
other = "Mengedit"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = ""
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "Lainnya"
|
other = "Lainnya"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "ホームページへ行く"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "編集"
|
other = "編集"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = ""
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "更に"
|
other = "更に"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "메인화면"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "편집"
|
other = "편집"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = ""
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "외부 링크"
|
other = "외부 링크"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "Naar startpagina"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "Bewerken"
|
other = "Bewerken"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = ""
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "Snelkoppelingen"
|
other = "Snelkoppelingen"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "Go t' homeplank"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "Edit"
|
other = "Edit"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = "Prrrint whole chapterrr"
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "Morrre"
|
other = "Morrre"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "Ir para o início"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "Editar"
|
other = "Editar"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = ""
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "Mais"
|
other = "Mais"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "Перейти на главную"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "редактировать"
|
other = "редактировать"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = ""
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "Еще"
|
other = "Еще"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "Anasayfaya dön"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "Düzenlemek"
|
other = "Düzenlemek"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = ""
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "Dahası Var"
|
other = "Dahası Var"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "Đi đến trang chủ"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "Biên tập"
|
other = "Biên tập"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = ""
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "Nội dung khác"
|
other = "Nội dung khác"
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ other = "转到主页"
|
|||||||
[Edit-this-page]
|
[Edit-this-page]
|
||||||
other = "编辑"
|
other = "编辑"
|
||||||
|
|
||||||
|
[Print-this-chapter]
|
||||||
|
other = ""
|
||||||
|
|
||||||
[Shortcuts-Title]
|
[Shortcuts-Title]
|
||||||
other = "更多"
|
other = "更多"
|
||||||
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
{{- .Scratch.Set "relearnOutputFormat" "HTML" }}
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ .Page.Language | default "en" }}" class="js csstransforms3d">
|
<html lang="{{ .Page.Language | default "en" }}" class="js csstransforms3d">
|
||||||
<head>
|
<head>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<div class="mermaid" align="center">
|
<div class="mermaid" align="center">
|
||||||
{{- safeHTML .Inner -}}
|
{{- safeHTML .Inner -}}
|
||||||
</div>
|
</div>
|
||||||
{{- .Page.Store.Set "hasMermaid" true }}
|
{{- .Page.Store.Set "htmlHasMermaid" true }}
|
||||||
|
@ -1,21 +1,4 @@
|
|||||||
|
{{- .Scratch.Set "relearnOutputFormat" "HTML" }}
|
||||||
{{- partial "header.html" . }}
|
{{- partial "header.html" . }}
|
||||||
{{- if eq .Kind "section" }}
|
{{- partial "content-screen.html" . }}
|
||||||
|
|
||||||
{{ partial "content.html" . }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or (eq .Kind "taxonomy") (eq .Kind "term") }}
|
|
||||||
<ul>
|
|
||||||
{{- range .Data.Terms.Alphabetical }}
|
|
||||||
{{- if and .Page.Title (or (ne (.Page.Scratch.Get "relearnIsHiddenStem") true) (ne .Page.Site.Params.disableTagHiddenPages true) ) }}
|
|
||||||
<li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a> ({{ len .Pages }})</li>
|
|
||||||
{{- end }}
|
|
||||||
{{- else }}
|
|
||||||
{{- range sort .Pages "Title" }}
|
|
||||||
{{- if and .Title (or (ne (.Scratch.Get "relearnIsHiddenStem") true) (ne .Site.Params.disableTagHiddenPages true) ) }}
|
|
||||||
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
</ul>
|
|
||||||
{{- end }}
|
|
||||||
{{- partial "footer.html" . }}
|
{{- partial "footer.html" . }}
|
4
layouts/_default/list.print.html
Normal file
4
layouts/_default/list.print.html
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{{- .Scratch.Set "relearnOutputFormat" "PRINT" }}
|
||||||
|
{{- partial "header.html" . }}
|
||||||
|
{{- partial "content-print.html" . }}
|
||||||
|
{{- partial "footer.html" . }}
|
@ -1,4 +1,4 @@
|
|||||||
|
{{- .Scratch.Set "relearnOutputFormat" "HTML" }}
|
||||||
{{- partial "header.html" . }}
|
{{- partial "header.html" . }}
|
||||||
|
{{- partial "content-screen.html" . }}
|
||||||
{{ partial "content.html" . }}
|
|
||||||
{{- partial "footer.html" . }}
|
{{- partial "footer.html" . }}
|
4
layouts/_default/single.print.html
Normal file
4
layouts/_default/single.print.html
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{{- .Scratch.Set "relearnOutputFormat" "PRINT" }}
|
||||||
|
{{- partial "header.html" . }}
|
||||||
|
{{- partial "content-print.html" . }}
|
||||||
|
{{- partial "footer.html" . }}
|
23
layouts/_default/taxonomy.html
Normal file
23
layouts/_default/taxonomy.html
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{{- .Scratch.Set "relearnOutputFormat" "HTML" }}
|
||||||
|
{{- partial "header.html" . }}
|
||||||
|
<article>
|
||||||
|
|
||||||
|
<h1>{{ if eq .Kind "term" }}{{ .Data.Singular | humanize }} {{ default "::" .Site.Params.titleSeparator }} {{ end }}{{ .Title }}</h1>
|
||||||
|
<ul>
|
||||||
|
{{- range .Data.Terms.Alphabetical }}
|
||||||
|
{{- if and .Page.Title (or (ne (.Page.Scratch.Get "relearnIsHiddenStem") true) (ne .Page.Site.Params.disableTagHiddenPages true) ) }}
|
||||||
|
<li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a> ({{ len .Pages }})</li>
|
||||||
|
{{- end }}
|
||||||
|
{{- else }}
|
||||||
|
{{- range sort .Pages "Title" }}
|
||||||
|
{{- if and .Title (or (ne (.Scratch.Get "relearnIsHiddenStem") true) (ne .Site.Params.disableTagHiddenPages true) ) }}
|
||||||
|
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<footer class="footline">
|
||||||
|
</footer>
|
||||||
|
</article>
|
||||||
|
{{- partial "footer.html" . }}
|
23
layouts/_default/taxonomy.print.html
Normal file
23
layouts/_default/taxonomy.print.html
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{{- .Scratch.Set "relearnOutputFormat" "PRINT" }}
|
||||||
|
{{- partial "header.html" . }}
|
||||||
|
<article>
|
||||||
|
|
||||||
|
<h1>{{ if eq .Kind "term" }}{{ .Data.Singular | humanize }} {{ default "::" .Site.Params.titleSeparator }} {{ end }}{{ .Title }}</h1>
|
||||||
|
<ul>
|
||||||
|
{{- range .Data.Terms.Alphabetical }}
|
||||||
|
{{- if and .Page.Title (or (ne (.Page.Scratch.Get "relearnIsHiddenStem") true) (ne .Page.Site.Params.disableTagHiddenPages true) ) }}
|
||||||
|
<li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a> ({{ len .Pages }})</li>
|
||||||
|
{{- end }}
|
||||||
|
{{- else }}
|
||||||
|
{{- range sort .Pages "Title" }}
|
||||||
|
{{- if and .Title (or (ne (.Scratch.Get "relearnIsHiddenStem") true) (ne .Site.Params.disableTagHiddenPages true) ) }}
|
||||||
|
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<footer class="footline">
|
||||||
|
</footer>
|
||||||
|
</article>
|
||||||
|
{{- partial "footer.html" . }}
|
@ -1,16 +1,22 @@
|
|||||||
|
{{- .Scratch.Set "relearnOutputFormat" "HTML" }}
|
||||||
{{- partial "header.html" . }}
|
{{- partial "header.html" . }}
|
||||||
|
{{- if .Site.Home.Content }}
|
||||||
|
{{- partial "content-screen.html" .Site.Home }}
|
||||||
|
{{- else }}
|
||||||
|
<article>
|
||||||
|
|
||||||
{{if .Site.Home.Content }}
|
<h1>Customize your own home page</h1>
|
||||||
{{.Site.Home.Content}}
|
<p>
|
||||||
{{else}}
|
The site is working. Don't forget to customize this page with your own. You typically have 3 choices :
|
||||||
<h1>Customize your own home page</h1>
|
</p>
|
||||||
<p>
|
<ul>
|
||||||
The site is working. Don't forget to customize this page with your own. You typically have 3 choices :
|
<li><b>1.</b> Create an _index.md document in <b>content</b> folder and fill it with Markdown content</li>
|
||||||
</p>
|
<li><b>2.</b> Create an <b>index.html</b> file in the <b>static</b> folder and fill the file with HTML content</li>
|
||||||
<ul>
|
<li><b>3.</b> Configure your server to automatically redirect home page to one your documentation page</li>
|
||||||
<li><b>1. </b> Create an _index.md document in <b>content</b> folder and fill it with Markdown content</li>
|
</ul>
|
||||||
<li><b>2. </b> Create an <b>index.html</b> file in the <b>static</b> folder and fill the file with HTML content</li>
|
|
||||||
<li><b>3. </b> Configure your server to automatically redirect home page to one your documentation page</li>
|
<footer class="footline">
|
||||||
</ul>
|
</footer>
|
||||||
{{ end }}
|
</article>
|
||||||
|
{{- end }}
|
||||||
{{- partial "footer.html" . }}
|
{{- partial "footer.html" . }}
|
22
layouts/index.print.html
Normal file
22
layouts/index.print.html
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{{- .Scratch.Set "relearnOutputFormat" "PRINT" }}
|
||||||
|
{{- partial "header.html" . }}
|
||||||
|
{{- if .Site.Home.Content }}
|
||||||
|
{{- partial "content-print.html" .Site.Home }}
|
||||||
|
{{- else }}
|
||||||
|
<article>
|
||||||
|
|
||||||
|
<h1>Customize your own home page</h1>
|
||||||
|
<p>
|
||||||
|
The site is working. Don't forget to customize this page with your own. You typically have 3 choices :
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li><b>1.</b> Create an _index.md document in <b>content</b> folder and fill it with Markdown content</li>
|
||||||
|
<li><b>2.</b> Create an <b>index.html</b> file in the <b>static</b> folder and fill the file with HTML content</li>
|
||||||
|
<li><b>3.</b> Configure your server to automatically redirect home page to one your documentation page</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<footer class="footline">
|
||||||
|
</footer>
|
||||||
|
</article>
|
||||||
|
{{- end }}
|
||||||
|
{{- partial "footer.html" . }}
|
11
layouts/partials/article.html
Normal file
11
layouts/partials/article.html
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{{- $content := .content }}
|
||||||
|
{{- with .page }}
|
||||||
|
<article{{if .Params.chapter}} class="chapter"{{end}}>
|
||||||
|
|
||||||
|
{{ if and (not .IsHome ) (not .Params.chapter) }}<h1>{{ .Title }}</h1>
|
||||||
|
{{ end }}{{ $content | safeHTML }}
|
||||||
|
<footer class="footline">
|
||||||
|
{{- partial "content-footer.html" . }}
|
||||||
|
</footer>
|
||||||
|
</article>
|
||||||
|
{{- end }}
|
83
layouts/partials/content-print.html
Normal file
83
layouts/partials/content-print.html
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
{{- $isActive := .IsHome }}
|
||||||
|
{{- $currentNode := . }}
|
||||||
|
{{- $defaultOrdersectionsby := .Site.Params.ordersectionsby | default "weight" }}
|
||||||
|
{{- $currentOrdersectionsby := .Site.Home.Params.ordersectionsby | default $defaultOrdersectionsby }}
|
||||||
|
{{- $pages := .Site.Home.Sections }}
|
||||||
|
{{- if $isActive }}
|
||||||
|
{{- template "section-print" dict "sect" . "currentnode" $currentNode }}
|
||||||
|
{{- if or .IsHome .Params.chapter $pages }}
|
||||||
|
<section>
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if eq $currentOrdersectionsby "title" }}
|
||||||
|
{{- range $pages.ByTitle }}
|
||||||
|
{{- template "section-tree-print" dict "sect" . "currentnode" $currentNode "isActive" $isActive }}
|
||||||
|
{{- end }}
|
||||||
|
{{- else }}
|
||||||
|
{{- range $pages.ByWeight }}
|
||||||
|
{{- template "section-tree-print" dict "sect" . "currentnode" $currentNode "isActive" $isActive }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if $isActive }}
|
||||||
|
{{- if or .IsHome .Params.chapter $pages }}
|
||||||
|
</section>
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- define "section-tree-print" }}
|
||||||
|
{{- $isActive := .isActive }}
|
||||||
|
{{- $currentNode := .currentnode }}
|
||||||
|
{{- $currentFileRelPermalink := .currentnode.RelPermalink }}
|
||||||
|
{{- with .sect }}
|
||||||
|
{{- $currentIsActive := eq .RelPermalink $currentFileRelPermalink }}
|
||||||
|
{{- $isActive = or $currentIsActive $isActive }}
|
||||||
|
{{- $relearnIsHiddenFrom := index ($currentNode.Scratch.Get "relearnIsHiddenFrom") .RelPermalink }}
|
||||||
|
{{- $hidden := and $relearnIsHiddenFrom (not $.showhidden) (not (.IsAncestor $currentNode)) }}
|
||||||
|
{{- if $hidden }}
|
||||||
|
{{- else if or .IsSection .IsHome }}
|
||||||
|
{{- $defaultOrdersectionsby := .Site.Params.ordersectionsby | default "weight" }}
|
||||||
|
{{- $currentOrdersectionsby := .Params.ordersectionsby | default $defaultOrdersectionsby }}
|
||||||
|
{{- $pages := .Pages }}
|
||||||
|
{{- if .Page.IsHome }}
|
||||||
|
{{- $pages = .Sections }}
|
||||||
|
{{- else if .Page.Sections}}
|
||||||
|
{{- $pages = (.Pages | union .Sections) }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if $isActive }}
|
||||||
|
{{- template "section-print" dict "sect" . "currentnode" $currentNode }}
|
||||||
|
{{- if or .IsHome .Params.chapter $pages }}
|
||||||
|
<section>
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if eq $currentOrdersectionsby "title" }}
|
||||||
|
{{- range $pages.ByTitle }}
|
||||||
|
{{- template "section-tree-print" dict "sect" . "currentnode" $currentNode "isActive" $isActive }}
|
||||||
|
{{- end }}
|
||||||
|
{{- else }}
|
||||||
|
{{- range $pages.ByWeight }}
|
||||||
|
{{- template "section-tree-print" dict "sect" . "currentnode" $currentNode "isActive" $isActive }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if $isActive }}
|
||||||
|
{{- if or .IsHome .Params.chapter $pages }}
|
||||||
|
</section>
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- else }}
|
||||||
|
{{- if $isActive }}
|
||||||
|
{{- template "section-print" dict "sect" . "currentnode" $currentNode }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- define "section-print" }}
|
||||||
|
{{- $currentNode := .currentnode }}
|
||||||
|
{{- with .sect }}
|
||||||
|
{{- $currentNode.Page.Store.Set "printHasMermaid" (or ($currentNode.Page.Store.Get "printHasMermaid") (.Page.Store.Get "htmlHasMermaid")) }}
|
||||||
|
{{- $currentNode.Page.Store.Set "printHasSwagger" (or ($currentNode.Page.Store.Get "printHasSwagger") (.Page.Store.Get "htmlHasSwagger")) }}
|
||||||
|
{{/* if we have a relative link in a print page, our print URL is one level to deep; so we are making it absolute to our page by prepending the page's permalink */}}
|
||||||
|
{{- $link_prefix := strings.TrimRight "/" .Page.RelPermalink }}
|
||||||
|
{{- $content := partial "content.html" . }}
|
||||||
|
{{- $content = replaceRE "((?:src|href)\\s*=(?:\\s*[\"']\\s*)?)(\\.[^\"'\\s>]*|[\\w]+[^\"'\\s>:]*)([\"'\\s>])" (printf "${1}%s/${2}${3}" $link_prefix) $content }}
|
||||||
|
{{- partial "article.html" (dict "page" . "content" $content) }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
1
layouts/partials/content-screen.html
Normal file
1
layouts/partials/content-screen.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
{{- partial "article.html" (dict "page" . "content" .Content) }}
|
@ -1 +1 @@
|
|||||||
{{ .Content }}
|
{{- .Content }}
|
@ -1,6 +1,4 @@
|
|||||||
<footer class="footline">
|
|
||||||
{{- partial "content-footer.html" . }}
|
|
||||||
</footer>
|
|
||||||
</div>
|
</div>
|
||||||
</main><!-- #body-inner -->
|
</main><!-- #body-inner -->
|
||||||
{{- partial "custom-comments.html" . }}
|
{{- partial "custom-comments.html" . }}
|
||||||
@ -9,7 +7,8 @@
|
|||||||
<script src="{{"js/clipboard.min.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
<script src="{{"js/clipboard.min.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
||||||
<script src="{{"js/perfect-scrollbar.min.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
<script src="{{"js/perfect-scrollbar.min.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
||||||
<script src="{{"js/featherlight.min.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
<script src="{{"js/featherlight.min.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
||||||
{{- if (or (.Page.Store.Get "hasMermaid") (and (ne .Params.disableMermaid nil) (not .Params.disableMermaid)) (and (ne .Site.Params.disableMermaid nil) (not .Site.Params.disableMermaid)) ) }}
|
{{- $wantsMermaid := or (and (eq (.Scratch.Get "relearnOutputFormat") "HTML") (.Page.Store.Get "htmlHasMermaid")) (and (eq (.Scratch.Get "relearnOutputFormat") "PRINT") (.Page.Store.Get "printHasMermaid")) }}
|
||||||
|
{{- if (or $wantsMermaid (and (ne .Params.disableMermaid nil) (not .Params.disableMermaid)) (and (ne .Site.Params.disableMermaid nil) (not .Site.Params.disableMermaid)) ) }}
|
||||||
<script src="{{"js/jquery.svg.pan.zoom.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
<script src="{{"js/jquery.svg.pan.zoom.js" | relURL}}{{ if not .Site.Params.disableAssetsBusting }}?{{ now.Unix }}{{ end }}"></script>
|
||||||
{{- if isset .Params "custommermaidurl" }}
|
{{- if isset .Params "custommermaidurl" }}
|
||||||
<script src="{{ .Params.customMermaidURL }}"></script>
|
<script src="{{ .Params.customMermaidURL }}"></script>
|
||||||
@ -38,7 +37,8 @@
|
|||||||
useMermaid( JSON.parse({{ $.Scratch.Get "mermaidInitialize" }}) );
|
useMermaid( JSON.parse({{ $.Scratch.Get "mermaidInitialize" }}) );
|
||||||
</script>
|
</script>
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if (or (.Page.Store.Get "hasSwagger") (and (ne .Params.disableSwagger nil) (not .Params.disableSwagger)) (and (ne .Site.Params.disableSwagger nil) (not .Site.Params.disableSwagger)) ) }}
|
{{- $wantsSwagger := or (and (eq (.Scratch.Get "relearnOutputFormat") "HTML") (.Page.Store.Get "htmlHasSwagger")) (and (eq (.Scratch.Get "relearnOutputFormat") "PRINT") (.Page.Store.Get "printHasSwagger")) }}
|
||||||
|
{{- if (or $wantsSwagger (and (ne .Params.disableSwagger nil) (not .Params.disableSwagger)) (and (ne .Site.Params.disableSwagger nil) (not .Site.Params.disableSwagger)) ) }}
|
||||||
{{- if isset .Params "customswaggerurl" }}
|
{{- if isset .Params "customswaggerurl" }}
|
||||||
<script src="{{ .Params.customSwaggerURL }}"></script>
|
<script src="{{ .Params.customSwaggerURL }}"></script>
|
||||||
{{- else if isset .Site.Params "customswaggerurl" }}
|
{{- else if isset .Site.Params "customswaggerurl" }}
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
{{- partial "stylesheet.html" . }}
|
{{- partial "stylesheet.html" . }}
|
||||||
{{- partial "custom-header.html" . }}
|
{{- partial "custom-header.html" . }}
|
||||||
</head>
|
</head>
|
||||||
<body class="mobile-support" data-url="{{ .RelPermalink }}">
|
<body class="mobile-support{{ if eq (.Scratch.Get "relearnOutputFormat") "PRINT" }} print{{ end }}" data-url="{{ .RelPermalink }}">
|
||||||
<div id="body" class="default-animation">
|
<div id="body" class="default-animation">
|
||||||
<div id="sidebar-overlay"></div>
|
<div id="sidebar-overlay"></div>
|
||||||
<div id="toc-overlay"></div>
|
<div id="toc-overlay"></div>
|
||||||
@ -56,6 +56,13 @@
|
|||||||
{{- end}}
|
{{- end}}
|
||||||
</div>
|
</div>
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with .OutputFormats.Get "PRINT" }}
|
||||||
|
<div id="top-print-link">
|
||||||
|
<a class="print-link" title='{{ T "Print-this-chapter" }}' href="{{ .RelPermalink }}">
|
||||||
|
<i class="fas fa-print fa-fw"></i>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{{- end -}}
|
||||||
{{- if .Site.Params.editURL }}
|
{{- if .Site.Params.editURL }}
|
||||||
{{- $File := .File }}
|
{{- $File := .File }}
|
||||||
{{- $Site := .Site }}
|
{{- $Site := .Site }}
|
||||||
@ -97,15 +104,11 @@
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
<main id="body-inner" class="highlightable {{if .Params.chapter}} chapter{{end}}">
|
<main id="body-inner" class="highlightable{{if .Params.chapter}} chapter{{end}}">
|
||||||
<div class="flex-block-wrapper">
|
<div class="flex-block-wrapper">
|
||||||
<div id="head-tags">
|
<div id="head-tags">
|
||||||
{{- partial "tags.html" . }}
|
{{- partial "tags.html" . }}
|
||||||
</div>
|
</div>
|
||||||
{{- if and (not .IsHome) (not .Params.chapter) }}
|
|
||||||
<h1>{{ if eq .Kind "term" }}{{ .Data.Singular | humanize }} {{ default "::" .Site.Params.titleSeparator }} {{ end }}{{ .Title }}</h1>
|
|
||||||
{{- end }}
|
|
||||||
|
|
||||||
{{- define "breadcrumb" }}
|
{{- define "breadcrumb" }}
|
||||||
{{- $parent := .page.Parent }}
|
{{- $parent := .page.Parent }}
|
||||||
{{- $ispublished := gt (int (len .page.Permalink)) 0 }}
|
{{- $ispublished := gt (int (len .page.Permalink)) 0 }}
|
||||||
|
@ -26,11 +26,11 @@
|
|||||||
{{- $defaultAlwaysopen := .Site.Params.alwaysopen | default false }}
|
{{- $defaultAlwaysopen := .Site.Params.alwaysopen | default false }}
|
||||||
{{- if eq $currentOrdersectionsby "title" }}
|
{{- if eq $currentOrdersectionsby "title" }}
|
||||||
{{- range .Site.Home.Sections.ByTitle }}
|
{{- range .Site.Home.Sections.ByTitle }}
|
||||||
{{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
|
{{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
{{- range .Site.Home.Sections.ByWeight }}
|
{{- range .Site.Home.Sections.ByWeight }}
|
||||||
{{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
|
{{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
</ul>
|
</ul>
|
||||||
@ -140,7 +140,7 @@
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
{{- range $pages.ByWeight }}
|
{{- range $pages.ByWeight }}
|
||||||
{{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
|
{{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}</ul></li>
|
{{- end }}</ul></li>
|
||||||
{{- else }}
|
{{- else }}
|
||||||
|
@ -10,8 +10,7 @@
|
|||||||
<link href="{{(printf "css/theme-%s.css" .) | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet" id="variant-style">
|
<link href="{{(printf "css/theme-%s.css" .) | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet" id="variant-style">
|
||||||
{{- end }}
|
{{- end }}
|
||||||
<link href="{{"css/variant.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
|
<link href="{{"css/variant.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
|
||||||
<link href="{{"css/theme-relearn-light.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet" media="print">
|
<link href="{{"css/print.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet"{{ if ne (.Scratch.Get "relearnOutputFormat") "PRINT" }} media="print"{{ end }}>
|
||||||
<link href="{{"css/print.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet" media="print">
|
|
||||||
{{- range .Site.Params.custom_css }}
|
{{- range .Site.Params.custom_css }}
|
||||||
<link href="{{(printf "%s" .) | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
|
<link href="{{(printf "%s" .) | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -2,4 +2,4 @@
|
|||||||
<div class="mermaid" align="{{ if .Get "align" }}{{ .Get "align" }}{{ else }}center{{ end }}">
|
<div class="mermaid" align="{{ if .Get "align" }}{{ .Get "align" }}{{ else }}center{{ end }}">
|
||||||
{{- safeHTML .Inner -}}
|
{{- safeHTML .Inner -}}
|
||||||
</div>
|
</div>
|
||||||
{{- .Page.Store.Set "hasMermaid" true }}
|
{{- .Page.Store.Set "htmlHasMermaid" true }}
|
@ -17,4 +17,4 @@
|
|||||||
spec-url="{{ $original }}"
|
spec-url="{{ $original }}"
|
||||||
sort-tags="true"
|
sort-tags="true"
|
||||||
></rapi-doc>
|
></rapi-doc>
|
||||||
{{- .Page.Store.Set "hasSwagger" true }}
|
{{- .Page.Store.Set "htmlHasSwagger" true }}
|
@ -1,3 +1,5 @@
|
|||||||
|
@import "theme-relearn-light.css";
|
||||||
|
|
||||||
#sidebar {
|
#sidebar {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@ -36,6 +38,7 @@ pre {
|
|||||||
color: #777;
|
color: #777;
|
||||||
}
|
}
|
||||||
.navigation,
|
.navigation,
|
||||||
|
#top-print-link,
|
||||||
#top-github-link {
|
#top-github-link {
|
||||||
/* we don't need this while printing */
|
/* we don't need this while printing */
|
||||||
display: none;
|
display: none;
|
||||||
@ -45,6 +48,7 @@ pre {
|
|||||||
}
|
}
|
||||||
#body #breadcrumbs .links {
|
#body #breadcrumbs .links {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
|
visibility: visible;
|
||||||
}
|
}
|
||||||
.copy-to-clipboard-button {
|
.copy-to-clipboard-button {
|
||||||
display: none;
|
display: none;
|
||||||
@ -77,11 +81,23 @@ body,
|
|||||||
#body-inner {
|
#body-inner {
|
||||||
overflow: visible !important; /* turn off limitations for perfect scrollbar */
|
overflow: visible !important; /* turn off limitations for perfect scrollbar */
|
||||||
}
|
}
|
||||||
#body-inner.chapter h1 {
|
#body #body-inner {
|
||||||
|
/* reset paddings for chapters in screen */
|
||||||
|
padding: 0 3rem 4rem 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#body #body-inner h1 {
|
||||||
border-bottom: 1px solid #ddd;
|
border-bottom: 1px solid #ddd;
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
padding-bottom: .75rem;
|
padding-bottom: .75rem;
|
||||||
}
|
}
|
||||||
|
#body-inner .chapter h3:first-of-type {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
#body-inner .chapter p {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
.footline {
|
.footline {
|
||||||
/* in print mode show footer line to signal reader the end of document */
|
/* in print mode show footer line to signal reader the end of document */
|
||||||
border-top: 1px solid #ddd;
|
border-top: 1px solid #ddd;
|
||||||
@ -103,7 +119,7 @@ body,
|
|||||||
/* we don't need this while printing */
|
/* we don't need this while printing */
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
#sidebar-toggle-span {
|
#body #sidebar-toggle-span {
|
||||||
/* we don't need this while printing */
|
/* we don't need this while printing */
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@ -154,3 +170,10 @@ rapi-doc{
|
|||||||
#body .tab-nav-button:not(.active) {
|
#body .tab-nav-button:not(.active) {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
article {
|
||||||
|
break-before: page;
|
||||||
|
}
|
||||||
|
#body-inner article:first-of-type {
|
||||||
|
break-before: avoid;
|
||||||
|
}
|
||||||
|
@ -217,7 +217,6 @@ body div.box.transparent {
|
|||||||
#body h4,
|
#body h4,
|
||||||
#body h5,
|
#body h5,
|
||||||
#body h6 {
|
#body h6 {
|
||||||
color: #fff;
|
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
#body div.box,
|
#body div.box,
|
||||||
@ -226,3 +225,19 @@ body div.box.transparent {
|
|||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* if we are in print chapter preview our @media statement from
|
||||||
|
above will not apply, so we have to repeat it here */
|
||||||
|
.print #body h1,
|
||||||
|
.print #body h2,
|
||||||
|
.print #body h3,
|
||||||
|
.print #body h4,
|
||||||
|
.print #body h5,
|
||||||
|
.print #body h6 {
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
.print #body div.box,
|
||||||
|
.print #body div.box > .box-label {
|
||||||
|
box-shadow: none;
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
@ -63,16 +63,16 @@ body {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
body #body-inner.chapter h1 {
|
body #body-inner .chapter h1 {
|
||||||
font-size: 3.5rem;
|
font-size: 3.5rem;
|
||||||
}
|
}
|
||||||
@media only all and (min-width: 48em) and (max-width: 59.938em) {
|
@media only screen and (min-width: 48em) and (max-width: 59.938em) {
|
||||||
body #body-inner.chapter h1 {
|
body #body-inner .chapter h1 {
|
||||||
font-size: 3rem;
|
font-size: 2.8rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media only all and (max-width: 47.938em) {
|
@media only screen and (max-width: 47.938em) {
|
||||||
body #body-inner.chapter h1 {
|
body #body-inner .chapter h1 {
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -437,18 +437,18 @@ th {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#body-inner.chapter h3:first-of-type {
|
#body-inner .chapter h3:first-of-type {
|
||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#body-inner.chapter h1 {
|
#body-inner .chapter h1 {
|
||||||
border-bottom: 4px solid rgba( 134, 134, 134, .125 );
|
border-bottom: 4px solid rgba( 134, 134, 134, .125 );
|
||||||
font-size: 5rem;
|
font-size: 5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#body-inner.chapter p {
|
#body-inner .chapter p {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
@ -938,12 +938,14 @@ td {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.navigation,
|
.navigation,
|
||||||
|
#top-print-link,
|
||||||
#top-github-link {
|
#top-github-link {
|
||||||
display: block;
|
display: block;
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav,
|
.nav,
|
||||||
|
.print-link,
|
||||||
.github-link {
|
.github-link {
|
||||||
border-left: thin solid rgba( 134, 134, 134, .333 );
|
border-left: thin solid rgba( 134, 134, 134, .333 );
|
||||||
padding-left: 1rem;
|
padding-left: 1rem;
|
||||||
@ -954,6 +956,7 @@ span.nav i{
|
|||||||
}
|
}
|
||||||
|
|
||||||
.navigation,
|
.navigation,
|
||||||
|
#top-print-link,
|
||||||
#top-github-link {
|
#top-github-link {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
@ -982,7 +985,7 @@ span.nav i{
|
|||||||
top: 50%;
|
top: 50%;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
width: calc(100% - 4*3.25rem);
|
width: calc(100% - 5*3.25rem);
|
||||||
}
|
}
|
||||||
@media screen and (max-width: 47.938em) {
|
@media screen and (max-width: 47.938em) {
|
||||||
#body #breadcrumbs {
|
#body #breadcrumbs {
|
||||||
@ -1278,6 +1281,7 @@ option {
|
|||||||
|
|
||||||
#body .navigation a.highlight:after,
|
#body .navigation a.highlight:after,
|
||||||
#body #sidebar-toggle-span a.highlight:after,
|
#body #sidebar-toggle-span a.highlight:after,
|
||||||
|
#body #top-print-link a.highlight:after,
|
||||||
#body #top-github-link a.highlight:after {
|
#body #top-github-link a.highlight:after {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
@ -1529,7 +1533,7 @@ rapi-doc {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 47.938em) {
|
@media screen and (max-width: 47.938em) {
|
||||||
#breadcrumbs .links, #top-github-link-text {
|
#breadcrumbs .links {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,8 @@ if( isIE ){
|
|||||||
else{
|
else{
|
||||||
document.querySelector( 'body' ).classList.add( 'mobile-support' );
|
document.querySelector( 'body' ).classList.add( 'mobile-support' );
|
||||||
}
|
}
|
||||||
|
var isPrint = document.querySelector( 'body' ).classList.contains( 'print' );
|
||||||
|
|
||||||
var touchsupport = ('ontouchstart' in window) || (navigator.maxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0)
|
var touchsupport = ('ontouchstart' in window) || (navigator.maxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0)
|
||||||
|
|
||||||
var formelements = 'button, datalist, fieldset, input, label, legend, meter, optgroup, option, output, progress, select, textarea';
|
var formelements = 'button, datalist, fieldset, input, label, legend, meter, optgroup, option, output, progress, select, textarea';
|
||||||
@ -295,6 +297,10 @@ function initArrowNav(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
function initMenuScrollbar(){
|
function initMenuScrollbar(){
|
||||||
|
if( isPrint ){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var content = '#body-inner';
|
var content = '#body-inner';
|
||||||
if( isIE ){
|
if( isIE ){
|
||||||
// IE can not display the topbar as sticky; so we let
|
// IE can not display the topbar as sticky; so we let
|
||||||
|
Loading…
x
Reference in New Issue
Block a user