just-the-docs-peter 0.1.0 → 0.1.1

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.
Files changed (96) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1508 -0
  3. data/LICENSE.txt +21 -0
  4. data/README.md +110 -0
  5. data/Rakefile +1 -0
  6. data/_includes/components/aux_nav.html +15 -0
  7. data/_includes/components/breadcrumbs.html +43 -0
  8. data/_includes/components/children_nav.html +33 -0
  9. data/_includes/components/footer.html +34 -0
  10. data/_includes/components/header.html +11 -0
  11. data/_includes/components/mermaid.html +45 -0
  12. data/_includes/components/search_footer.html +7 -0
  13. data/_includes/components/search_header.html +9 -0
  14. data/_includes/components/sidebar.html +71 -0
  15. data/_includes/css/callouts.scss.liquid +93 -0
  16. data/_includes/css/custom.scss.liquid +1 -0
  17. data/_includes/css/just-the-docs.scss.liquid +12 -0
  18. data/_includes/fix_linenos.html +65 -0
  19. data/_includes/footer_custom.html +3 -0
  20. data/_includes/head.html +42 -0
  21. data/_includes/head_custom.html +0 -0
  22. data/_includes/header_custom.html +0 -0
  23. data/_includes/icons/code_copy.html +15 -0
  24. data/_includes/icons/document.html +6 -0
  25. data/_includes/icons/expand.html +6 -0
  26. data/_includes/icons/external_link.html +5 -0
  27. data/_includes/icons/icons.html +13 -0
  28. data/_includes/icons/link.html +6 -0
  29. data/_includes/icons/menu.html +6 -0
  30. data/_includes/icons/search.html +6 -0
  31. data/_includes/js/custom.js +0 -0
  32. data/_includes/lunr/custom-data.json +0 -0
  33. data/_includes/lunr/custom-index.js +0 -0
  34. data/_includes/mermaid_config.js +1 -0
  35. data/_includes/nav.html +106 -0
  36. data/_includes/nav_footer_custom.html +0 -0
  37. data/_includes/search_placeholder_custom.html +1 -0
  38. data/_includes/sorted_pages.html +95 -0
  39. data/_includes/title.html +5 -0
  40. data/_includes/toc_heading_custom.html +1 -0
  41. data/_includes/vendor/anchor_headings.html +172 -0
  42. data/_layouts/about.html +5 -0
  43. data/_layouts/default.html +41 -0
  44. data/_layouts/home.html +5 -0
  45. data/_layouts/minimal.html +34 -0
  46. data/_layouts/page.html +5 -0
  47. data/_layouts/post.html +5 -0
  48. data/_layouts/table_wrappers.html +7 -0
  49. data/_layouts/vendor/compress.html +10 -0
  50. data/_sass/base.scss +109 -0
  51. data/_sass/buttons.scss +123 -0
  52. data/_sass/code.scss +246 -0
  53. data/_sass/color_schemes/dark.scss +17 -0
  54. data/_sass/color_schemes/legacy_light.scss +208 -0
  55. data/_sass/color_schemes/light.scss +15 -0
  56. data/_sass/color_schemes/light_peter.scss +15 -0
  57. data/_sass/content.scss +239 -0
  58. data/_sass/custom/custom.scss +1 -0
  59. data/_sass/custom/setup.scss +1 -0
  60. data/_sass/labels.scss +33 -0
  61. data/_sass/layout.scss +209 -0
  62. data/_sass/modules.scss +17 -0
  63. data/_sass/navigation.scss +235 -0
  64. data/_sass/print.scss +40 -0
  65. data/_sass/search.scss +311 -0
  66. data/_sass/skiptomain.scss +30 -0
  67. data/_sass/support/_variables.scss +116 -0
  68. data/_sass/support/mixins/_buttons.scss +27 -0
  69. data/_sass/support/mixins/_layout.scss +33 -0
  70. data/_sass/support/mixins/_typography.scss +84 -0
  71. data/_sass/support/mixins/mixins.scss +3 -0
  72. data/_sass/support/support.scss +2 -0
  73. data/_sass/tables.scss +54 -0
  74. data/_sass/typography.scss +63 -0
  75. data/_sass/utilities/_colors.scss +237 -0
  76. data/_sass/utilities/_layout.scss +101 -0
  77. data/_sass/utilities/_lists.scss +15 -0
  78. data/_sass/utilities/_spacing.scss +162 -0
  79. data/_sass/utilities/_typography.scss +85 -0
  80. data/_sass/utilities/utilities.scss +5 -0
  81. data/_sass/vendor/OneDarkJekyll/LICENSE +21 -0
  82. data/_sass/vendor/OneDarkJekyll/syntax.scss +202 -0
  83. data/_sass/vendor/OneLightJekyll/LICENSE +65 -0
  84. data/_sass/vendor/OneLightJekyll/syntax.scss +208 -0
  85. data/_sass/vendor/normalize.scss/README.md +7 -0
  86. data/_sass/vendor/normalize.scss/normalize.scss +351 -0
  87. data/assets/css/just-the-docs-dark.scss +3 -0
  88. data/assets/css/just-the-docs-default.scss +8 -0
  89. data/assets/css/just-the-docs-light.scss +3 -0
  90. data/assets/js/just-the-docs.js +535 -0
  91. data/assets/js/vendor/lunr.min.js +61 -0
  92. data/assets/js/zzzz-search-data.json +74 -0
  93. data/bin/just-the-docs +16 -0
  94. data/favicon.ico +0 -0
  95. data/lib/tasks/search.rake +88 -0
  96. metadata +152 -11
@@ -0,0 +1,74 @@
1
+ ---
2
+ permalink: /assets/js/search-data.json
3
+ ---
4
+ {
5
+ {%- assign i = 0 -%}
6
+ {%- assign pages_array = "" | split: "" -%}
7
+ {%- assign pages_array = pages_array | push: site.html_pages -%}
8
+ {%- if site.just_the_docs.collections -%}
9
+ {%- for collection_entry in site.just_the_docs.collections -%}
10
+ {%- assign collection_key = collection_entry[0] -%}
11
+ {%- assign collection_value = collection_entry[1] -%}
12
+ {%- assign collection = site[collection_key] -%}
13
+ {%- if collection_value.search_exclude != true -%}
14
+ {%- assign pages_array = pages_array | push: collection -%}
15
+ {%- endif -%}
16
+ {%- endfor -%}
17
+ {%- endif -%}
18
+ {%- for pages in pages_array -%}
19
+ {%- for page in pages -%}
20
+ {%- if page.title and page.search_exclude != true -%}
21
+ {%- assign page_content = page.content -%}
22
+ {%- assign heading_level = site.search.heading_level | default: 2 -%}
23
+ {%- for j in (2..heading_level) -%}
24
+ {%- assign tag = '<h' | append: j -%}
25
+ {%- assign closing_tag = '</h' | append: j -%}
26
+ {%- assign page_content = page_content | replace: tag, '<h1' | replace: closing_tag, '</h1' -%}
27
+ {%- endfor -%}
28
+ {%- assign parts = page_content | split: '<h1' -%}
29
+ {%- assign title_found = false -%}
30
+ {%- for part in parts offset: 1 -%}
31
+ {%- assign titleAndContent = part | split: '</h1>' -%}
32
+ {%- assign title = titleAndContent[0] | replace_first: '>', '<h1>' | split: '<h1>' -%}
33
+ {%- assign title = title[1] | strip_html -%}
34
+ {%- assign content = titleAndContent[1] -%}
35
+ {%- assign url = page.url -%}
36
+ {%- if title == page.title and parts[0] == '' -%}
37
+ {%- assign title_found = true -%}
38
+ {%- else -%}
39
+ {%- assign id = titleAndContent[0] -%}
40
+ {%- assign id = id | split: 'id="' -%}
41
+ {%- if id.size == 2 -%}
42
+ {%- assign id = id[1] -%}
43
+ {%- assign id = id | split: '"' -%}
44
+ {%- assign id = id[0] -%}
45
+ {%- capture url -%}{{ url | append: '#' | append: id }}{%- endcapture -%}
46
+ {%- endif -%}
47
+ {%- endif -%}
48
+ {%- unless i == 0 -%},{%- endunless -%}
49
+ "{{ i }}": {
50
+ "doc": {{ page.title | jsonify }},
51
+ "title": {{ title | jsonify }},
52
+ "content": {{ content | replace: '</h', ' . </h' | replace: '<hr', ' . <hr' | replace: '</p', ' . </p' | replace: '<ul', ' . <ul' | replace: '</ul', ' . </ul' | replace: '<ol', ' . <ol' | replace: '</ol', ' . </ol' | replace: '</tr', ' . </tr' | replace: '<li', ' | <li' | replace: '</li', ' | </li' | replace: '</td', ' | </td' | replace: '<td', ' | <td' | replace: '</th', ' | </th' | replace: '<th', ' | <th' | strip_html | remove: 'Table of contents' | normalize_whitespace | replace: '. . .', '.' | replace: '. .', '.' | replace: '| |', '|' | append: ' ' | jsonify }},
53
+ "url": "{{ url | relative_url }}",
54
+ {% include lunr/custom-data.json page=page %}
55
+ "relUrl": "{{ url }}"
56
+ }
57
+ {%- assign i = i | plus: 1 -%}
58
+ {%- endfor -%}
59
+ {%- unless title_found -%}
60
+ {%- unless i == 0 -%},{%- endunless -%}
61
+ "{{ i }}": {
62
+ "doc": {{ page.title | jsonify }},
63
+ "title": {{ page.title | jsonify }},
64
+ "content": {{ parts[0] | replace: '</h', ' . </h' | replace: '<hr', ' . <hr' | replace: '</p', ' . </p' | replace: '<ul', ' . <ul' | replace: '</ul', ' . </ul' | replace: '<ol', ' . <ol' | replace: '</ol', ' . </ol' | replace: '</tr', ' . </tr' | replace: '<li', ' | <li' | replace: '</li', ' | </li' | replace: '</td', ' | </td' | replace: '<td', ' | <td' | replace: '</th', ' | </th' | replace: '<th', ' | <th' | strip_html | remove: 'Table of contents' | normalize_whitespace | replace: '. . .', '.' | replace: '. .', '.' | replace: '| |', '|' | append: ' ' | jsonify }},
65
+ "url": "{{ page.url | relative_url }}",
66
+ {% include lunr/custom-data.json page=page %}
67
+ "relUrl": "{{ page.url }}"
68
+ }
69
+ {%- assign i = i | plus: 1 -%}
70
+ {%- endunless -%}
71
+ {%- endif -%}
72
+ {%- endfor -%}
73
+ {%- endfor %}
74
+ }
data/bin/just-the-docs ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ gem_dir = File.expand_path("..",File.dirname(__FILE__))
4
+ $LOAD_PATH.unshift gem_dir # Look in gem directory for resources first.
5
+ exec_type = ARGV[0]
6
+
7
+ if exec_type == 'rake' then
8
+ require 'rake'
9
+ require 'pp'
10
+ pwd=Dir.pwd
11
+ Dir.chdir(gem_dir) # We'll load rakefile from the gem's dir.
12
+ Rake.application.init
13
+ Rake.application.load_rakefile
14
+ Dir.chdir(pwd) # Revert to original pwd for any path args passed to task.
15
+ Rake.application.invoke_task(ARGV[1])
16
+ end
data/favicon.ico ADDED
Binary file
@@ -0,0 +1,88 @@
1
+ namespace :search do
2
+ desc 'Generate the files needed for search functionality'
3
+ task :init do
4
+ puts 'Creating search data json file...'
5
+ mkdir_p 'assets/js'
6
+ touch 'assets/js/zzzz-search-data.json'
7
+ puts 'Done.'
8
+ puts 'Generating content...'
9
+
10
+ File.open('assets/js/zzzz-search-data.json', 'w') do |f|
11
+ f.puts '---
12
+ permalink: /assets/js/search-data.json
13
+ ---
14
+ {
15
+ {%- assign i = 0 -%}
16
+ {%- assign pages_array = "" | split: "" -%}
17
+ {%- assign pages_array = pages_array | push: site.html_pages -%}
18
+ {%- if site.just_the_docs.collections -%}
19
+ {%- for collection_entry in site.just_the_docs.collections -%}
20
+ {%- assign collection_key = collection_entry[0] -%}
21
+ {%- assign collection_value = collection_entry[1] -%}
22
+ {%- assign collection = site[collection_key] -%}
23
+ {%- if collection_value.search_exclude != true -%}
24
+ {%- assign pages_array = pages_array | push: collection -%}
25
+ {%- endif -%}
26
+ {%- endfor -%}
27
+ {%- endif -%}
28
+ {%- for pages in pages_array -%}
29
+ {%- for page in pages -%}
30
+ {%- if page.title and page.search_exclude != true -%}
31
+ {%- assign page_content = page.content -%}
32
+ {%- assign heading_level = site.search.heading_level | default: 2 -%}
33
+ {%- for j in (2..heading_level) -%}
34
+ {%- assign tag = \'<h\' | append: j -%}
35
+ {%- assign closing_tag = \'</h\' | append: j -%}
36
+ {%- assign page_content = page_content | replace: tag, \'<h1\' | replace: closing_tag, \'</h1\' -%}
37
+ {%- endfor -%}
38
+ {%- assign parts = page_content | split: \'<h1\' -%}
39
+ {%- assign title_found = false -%}
40
+ {%- for part in parts offset: 1 -%}
41
+ {%- assign titleAndContent = part | split: \'</h1>\' -%}
42
+ {%- assign title = titleAndContent[0] | replace_first: \'>\', \'<h1>\' | split: \'<h1>\' -%}
43
+ {%- assign title = title[1] | strip_html -%}
44
+ {%- assign content = titleAndContent[1] -%}
45
+ {%- assign url = page.url -%}
46
+ {%- if title == page.title and parts[0] == \'\' -%}
47
+ {%- assign title_found = true -%}
48
+ {%- else -%}
49
+ {%- assign id = titleAndContent[0] -%}
50
+ {%- assign id = id | split: \'id="\' -%}
51
+ {%- if id.size == 2 -%}
52
+ {%- assign id = id[1] -%}
53
+ {%- assign id = id | split: \'"\' -%}
54
+ {%- assign id = id[0] -%}
55
+ {%- capture url -%}{{ url | append: \'#\' | append: id }}{%- endcapture -%}
56
+ {%- endif -%}
57
+ {%- endif -%}
58
+ {%- unless i == 0 -%},{%- endunless -%}
59
+ "{{ i }}": {
60
+ "doc": {{ page.title | jsonify }},
61
+ "title": {{ title | jsonify }},
62
+ "content": {{ content | replace: \'</h\', \' . </h\' | replace: \'<hr\', \' . <hr\' | replace: \'</p\', \' . </p\' | replace: \'<ul\', \' . <ul\' | replace: \'</ul\', \' . </ul\' | replace: \'<ol\', \' . <ol\' | replace: \'</ol\', \' . </ol\' | replace: \'</tr\', \' . </tr\' | replace: \'<li\', \' | <li\' | replace: \'</li\', \' | </li\' | replace: \'</td\', \' | </td\' | replace: \'<td\', \' | <td\' | replace: \'</th\', \' | </th\' | replace: \'<th\', \' | <th\' | strip_html | remove: \'Table of contents\' | normalize_whitespace | replace: \'. . .\', \'.\' | replace: \'. .\', \'.\' | replace: \'| |\', \'|\' | append: \' \' | jsonify }},
63
+ "url": "{{ url | relative_url }}",
64
+ {% include lunr/custom-data.json page=page %}
65
+ "relUrl": "{{ url }}"
66
+ }
67
+ {%- assign i = i | plus: 1 -%}
68
+ {%- endfor -%}
69
+ {%- unless title_found -%}
70
+ {%- unless i == 0 -%},{%- endunless -%}
71
+ "{{ i }}": {
72
+ "doc": {{ page.title | jsonify }},
73
+ "title": {{ page.title | jsonify }},
74
+ "content": {{ parts[0] | replace: \'</h\', \' . </h\' | replace: \'<hr\', \' . <hr\' | replace: \'</p\', \' . </p\' | replace: \'<ul\', \' . <ul\' | replace: \'</ul\', \' . </ul\' | replace: \'<ol\', \' . <ol\' | replace: \'</ol\', \' . </ol\' | replace: \'</tr\', \' . </tr\' | replace: \'<li\', \' | <li\' | replace: \'</li\', \' | </li\' | replace: \'</td\', \' | </td\' | replace: \'<td\', \' | <td\' | replace: \'</th\', \' | </th\' | replace: \'<th\', \' | <th\' | strip_html | remove: \'Table of contents\' | normalize_whitespace | replace: \'. . .\', \'.\' | replace: \'. .\', \'.\' | replace: \'| |\', \'|\' | append: \' \' | jsonify }},
75
+ "url": "{{ page.url | relative_url }}",
76
+ {% include lunr/custom-data.json page=page %}
77
+ "relUrl": "{{ page.url }}"
78
+ }
79
+ {%- assign i = i | plus: 1 -%}
80
+ {%- endunless -%}
81
+ {%- endif -%}
82
+ {%- endfor -%}
83
+ {%- endfor %}
84
+ }'
85
+ end
86
+ puts 'Done.'
87
+ end
88
+ end
metadata CHANGED
@@ -1,40 +1,181 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: just-the-docs-peter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - Ju(Peter) CAI
7
+ - Peter Tsai
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2023-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.3.5
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.3.5
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: jekyll
15
29
  requirement: !ruby/object:Gem::Requirement
16
30
  requirements:
17
- - - "~>"
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 3.8.5
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 3.8.5
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-seo-tag
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '2.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
18
60
  - !ruby/object:Gem::Version
19
- version: '4.3'
61
+ version: 12.3.1
20
62
  type: :runtime
21
63
  prerelease: false
22
64
  version_requirements: !ruby/object:Gem::Requirement
23
65
  requirements:
24
- - - "~>"
66
+ - - ">="
25
67
  - !ruby/object:Gem::Version
26
- version: '4.3'
68
+ version: 12.3.1
27
69
  description:
28
70
  email:
29
- - petercai1995@gmail.com
30
- executables: []
71
+ - petercai7@163.com
72
+ executables:
73
+ - just-the-docs
31
74
  extensions: []
32
75
  extra_rdoc_files: []
33
- files: []
76
+ files:
77
+ - CHANGELOG.md
78
+ - LICENSE.txt
79
+ - README.md
80
+ - Rakefile
81
+ - _includes/components/aux_nav.html
82
+ - _includes/components/breadcrumbs.html
83
+ - _includes/components/children_nav.html
84
+ - _includes/components/footer.html
85
+ - _includes/components/header.html
86
+ - _includes/components/mermaid.html
87
+ - _includes/components/search_footer.html
88
+ - _includes/components/search_header.html
89
+ - _includes/components/sidebar.html
90
+ - _includes/css/callouts.scss.liquid
91
+ - _includes/css/custom.scss.liquid
92
+ - _includes/css/just-the-docs.scss.liquid
93
+ - _includes/fix_linenos.html
94
+ - _includes/footer_custom.html
95
+ - _includes/head.html
96
+ - _includes/head_custom.html
97
+ - _includes/header_custom.html
98
+ - _includes/icons/code_copy.html
99
+ - _includes/icons/document.html
100
+ - _includes/icons/expand.html
101
+ - _includes/icons/external_link.html
102
+ - _includes/icons/icons.html
103
+ - _includes/icons/link.html
104
+ - _includes/icons/menu.html
105
+ - _includes/icons/search.html
106
+ - _includes/js/custom.js
107
+ - _includes/lunr/custom-data.json
108
+ - _includes/lunr/custom-index.js
109
+ - _includes/mermaid_config.js
110
+ - _includes/nav.html
111
+ - _includes/nav_footer_custom.html
112
+ - _includes/search_placeholder_custom.html
113
+ - _includes/sorted_pages.html
114
+ - _includes/title.html
115
+ - _includes/toc_heading_custom.html
116
+ - _includes/vendor/anchor_headings.html
117
+ - _layouts/about.html
118
+ - _layouts/default.html
119
+ - _layouts/home.html
120
+ - _layouts/minimal.html
121
+ - _layouts/page.html
122
+ - _layouts/post.html
123
+ - _layouts/table_wrappers.html
124
+ - _layouts/vendor/compress.html
125
+ - _sass/base.scss
126
+ - _sass/buttons.scss
127
+ - _sass/code.scss
128
+ - _sass/color_schemes/dark.scss
129
+ - _sass/color_schemes/legacy_light.scss
130
+ - _sass/color_schemes/light.scss
131
+ - _sass/color_schemes/light_peter.scss
132
+ - _sass/content.scss
133
+ - _sass/custom/custom.scss
134
+ - _sass/custom/setup.scss
135
+ - _sass/labels.scss
136
+ - _sass/layout.scss
137
+ - _sass/modules.scss
138
+ - _sass/navigation.scss
139
+ - _sass/print.scss
140
+ - _sass/search.scss
141
+ - _sass/skiptomain.scss
142
+ - _sass/support/_variables.scss
143
+ - _sass/support/mixins/_buttons.scss
144
+ - _sass/support/mixins/_layout.scss
145
+ - _sass/support/mixins/_typography.scss
146
+ - _sass/support/mixins/mixins.scss
147
+ - _sass/support/support.scss
148
+ - _sass/tables.scss
149
+ - _sass/typography.scss
150
+ - _sass/utilities/_colors.scss
151
+ - _sass/utilities/_layout.scss
152
+ - _sass/utilities/_lists.scss
153
+ - _sass/utilities/_spacing.scss
154
+ - _sass/utilities/_typography.scss
155
+ - _sass/utilities/utilities.scss
156
+ - _sass/vendor/OneDarkJekyll/LICENSE
157
+ - _sass/vendor/OneDarkJekyll/syntax.scss
158
+ - _sass/vendor/OneLightJekyll/LICENSE
159
+ - _sass/vendor/OneLightJekyll/syntax.scss
160
+ - _sass/vendor/normalize.scss/README.md
161
+ - _sass/vendor/normalize.scss/normalize.scss
162
+ - assets/css/just-the-docs-dark.scss
163
+ - assets/css/just-the-docs-default.scss
164
+ - assets/css/just-the-docs-light.scss
165
+ - assets/js/just-the-docs.js
166
+ - assets/js/vendor/lunr.min.js
167
+ - assets/js/zzzz-search-data.json
168
+ - bin/just-the-docs
169
+ - favicon.ico
170
+ - lib/tasks/search.rake
34
171
  homepage: https://github.com/PeterCai7/just-the-docs-customized
35
172
  licenses:
36
173
  - MIT
37
- metadata: {}
174
+ metadata:
175
+ bug_tracker_uri: https://github.com/just-the-docs/just-the-docs/issues
176
+ changelog_uri: https://github.com/just-the-docs/just-the-docs/blob/main/CHANGELOG.md
177
+ documentation_uri: https://just-the-docs.com/
178
+ source_code_uri: https://github.com/just-the-docs/just-the-docs
38
179
  post_install_message:
39
180
  rdoc_options: []
40
181
  require_paths:
@@ -53,5 +194,5 @@ requirements: []
53
194
  rubygems_version: 3.3.26
54
195
  signing_key:
55
196
  specification_version: 4
56
- summary: This theme is forked from just-the-docs and change a few colors.
197
+ summary: A fork customization from just-the-docs
57
198
  test_files: []