just-the-docs 0.4.0.rc3 → 0.4.0.rc4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +155 -25
- data/README.md +36 -12
- data/_includes/components/aux_nav.html +15 -0
- data/_includes/components/breadcrumbs.html +15 -0
- data/_includes/components/children_nav.html +9 -0
- data/_includes/components/footer.html +34 -0
- data/_includes/components/header.html +11 -0
- data/_includes/components/mermaid.html +5 -0
- data/_includes/components/search_footer.html +7 -0
- data/_includes/components/search_header.html +9 -0
- data/_includes/components/sidebar.html +69 -0
- data/_includes/css/just-the-docs.scss.liquid +1 -1
- data/_includes/head.html +14 -13
- data/_includes/icons/code_copy.html +15 -0
- data/_includes/icons/document.html +6 -0
- data/_includes/icons/expand.html +6 -0
- data/_includes/icons/icons.html +13 -0
- data/_includes/icons/link.html +6 -0
- data/_includes/icons/menu.html +6 -0
- data/_includes/icons/search.html +6 -0
- data/_includes/nav.html +48 -30
- data/_includes/vendor/anchor_headings.html +46 -18
- data/_layouts/default.html +8 -196
- data/_layouts/minimal.html +60 -0
- data/_sass/buttons.scss +1 -4
- data/_sass/code.scss +84 -26
- data/_sass/labels.scss +1 -4
- data/_sass/layout.scss +1 -2
- data/_sass/navigation.scss +4 -14
- data/_sass/search.scss +9 -20
- data/_sass/tables.scss +1 -4
- data/assets/js/just-the-docs.js +44 -1
- data/assets/js/vendor/lunr.min.js +58 -3
- metadata +20 -4
- data/_includes/favicon.html +0 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: just-the-docs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.0.
|
4
|
+
version: 0.4.0.rc4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patrick Marsceill
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2023-01-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -80,16 +80,31 @@ files:
|
|
80
80
|
- LICENSE.txt
|
81
81
|
- README.md
|
82
82
|
- Rakefile
|
83
|
+
- _includes/components/aux_nav.html
|
84
|
+
- _includes/components/breadcrumbs.html
|
85
|
+
- _includes/components/children_nav.html
|
86
|
+
- _includes/components/footer.html
|
87
|
+
- _includes/components/header.html
|
88
|
+
- _includes/components/mermaid.html
|
89
|
+
- _includes/components/search_footer.html
|
90
|
+
- _includes/components/search_header.html
|
91
|
+
- _includes/components/sidebar.html
|
83
92
|
- _includes/css/callouts.scss.liquid
|
84
93
|
- _includes/css/custom.scss.liquid
|
85
94
|
- _includes/css/just-the-docs.scss.liquid
|
86
|
-
- _includes/favicon.html
|
87
95
|
- _includes/fix_linenos.html
|
88
96
|
- _includes/footer_custom.html
|
89
97
|
- _includes/head.html
|
90
98
|
- _includes/head_custom.html
|
91
99
|
- _includes/header_custom.html
|
100
|
+
- _includes/icons/code_copy.html
|
101
|
+
- _includes/icons/document.html
|
102
|
+
- _includes/icons/expand.html
|
92
103
|
- _includes/icons/external_link.html
|
104
|
+
- _includes/icons/icons.html
|
105
|
+
- _includes/icons/link.html
|
106
|
+
- _includes/icons/menu.html
|
107
|
+
- _includes/icons/search.html
|
93
108
|
- _includes/js/custom.js
|
94
109
|
- _includes/mermaid_config.js
|
95
110
|
- _includes/nav.html
|
@@ -101,6 +116,7 @@ files:
|
|
101
116
|
- _layouts/about.html
|
102
117
|
- _layouts/default.html
|
103
118
|
- _layouts/home.html
|
119
|
+
- _layouts/minimal.html
|
104
120
|
- _layouts/page.html
|
105
121
|
- _layouts/post.html
|
106
122
|
- _layouts/table_wrappers.html
|
@@ -181,7 +197,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
181
197
|
- !ruby/object:Gem::Version
|
182
198
|
version: 1.3.1
|
183
199
|
requirements: []
|
184
|
-
rubygems_version: 3.
|
200
|
+
rubygems_version: 3.3.26
|
185
201
|
signing_key:
|
186
202
|
specification_version: 4
|
187
203
|
summary: A modern, highly customizable, and responsive Jekyll theme for documention
|
data/_includes/favicon.html
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
<link rel="shortcut icon" href="{{ 'favicon.ico' | relative_url }}" type="image/x-icon">
|