just-the-hm-docs 1.0.0.rc1

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 (114) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +24 -0
  4. data/Rakefile +1 -0
  5. data/_includes/components/aux_nav.html +15 -0
  6. data/_includes/components/breadcrumbs.html +15 -0
  7. data/_includes/components/children_nav.html +9 -0
  8. data/_includes/components/footer.html +34 -0
  9. data/_includes/components/header.html +11 -0
  10. data/_includes/components/mermaid.html +5 -0
  11. data/_includes/components/search_footer.html +7 -0
  12. data/_includes/components/search_header.html +9 -0
  13. data/_includes/components/sidebar.html +69 -0
  14. data/_includes/css/callouts.scss.liquid +93 -0
  15. data/_includes/css/custom.scss.liquid +1 -0
  16. data/_includes/css/just-the-docs.scss.liquid +10 -0
  17. data/_includes/fix_linenos.html +65 -0
  18. data/_includes/footer_custom.html +3 -0
  19. data/_includes/head.html +46 -0
  20. data/_includes/head_custom.html +4 -0
  21. data/_includes/header_custom.html +0 -0
  22. data/_includes/icons/code_copy.html +15 -0
  23. data/_includes/icons/document.html +6 -0
  24. data/_includes/icons/expand.html +6 -0
  25. data/_includes/icons/external_link.html +5 -0
  26. data/_includes/icons/icons.html +13 -0
  27. data/_includes/icons/link.html +6 -0
  28. data/_includes/icons/menu.html +6 -0
  29. data/_includes/icons/search.html +6 -0
  30. data/_includes/js/custom.js +0 -0
  31. data/_includes/lunr/custom-data.json +0 -0
  32. data/_includes/lunr/custom-index.js +0 -0
  33. data/_includes/mermaid_config.js +1 -0
  34. data/_includes/nav.html +251 -0
  35. data/_includes/nav_footer_custom.html +0 -0
  36. data/_includes/search_placeholder_custom.html +1 -0
  37. data/_includes/title.html +5 -0
  38. data/_includes/toc_heading_custom.html +1 -0
  39. data/_includes/vendor/anchor_headings.html +172 -0
  40. data/_layouts/about.html +5 -0
  41. data/_layouts/default.html +41 -0
  42. data/_layouts/home.html +5 -0
  43. data/_layouts/minimal.html +60 -0
  44. data/_layouts/page.html +5 -0
  45. data/_layouts/post.html +5 -0
  46. data/_layouts/table_wrappers.html +7 -0
  47. data/_layouts/vendor/compress.html +10 -0
  48. data/_sass/base.scss +114 -0
  49. data/_sass/buttons.scss +113 -0
  50. data/_sass/code.scss +210 -0
  51. data/_sass/color_schemes/dark.scss +28 -0
  52. data/_sass/color_schemes/hm.scss +26 -0
  53. data/_sass/color_schemes/light.scss +208 -0
  54. data/_sass/content.scss +239 -0
  55. data/_sass/custom/custom.scss +30 -0
  56. data/_sass/custom/hm-branding.scss +259 -0
  57. data/_sass/custom/hm-code.scss +153 -0
  58. data/_sass/custom/hm-colors.scss +15 -0
  59. data/_sass/custom/hm-notes.scss +38 -0
  60. data/_sass/custom/setup.scss +160 -0
  61. data/_sass/labels.scss +33 -0
  62. data/_sass/layout.scss +206 -0
  63. data/_sass/modules.scss +17 -0
  64. data/_sass/navigation.scss +235 -0
  65. data/_sass/print.scss +40 -0
  66. data/_sass/search.scss +311 -0
  67. data/_sass/skiptomain.scss +30 -0
  68. data/_sass/support/_functions.scss +11 -0
  69. data/_sass/support/_variables.scss +129 -0
  70. data/_sass/support/mixins/_buttons.scss +27 -0
  71. data/_sass/support/mixins/_layout.scss +34 -0
  72. data/_sass/support/mixins/_typography.scss +84 -0
  73. data/_sass/support/mixins/mixins.scss +3 -0
  74. data/_sass/support/support.scss +3 -0
  75. data/_sass/tables.scss +54 -0
  76. data/_sass/typography.scss +63 -0
  77. data/_sass/utilities/_colors.scss +237 -0
  78. data/_sass/utilities/_layout.scss +101 -0
  79. data/_sass/utilities/_lists.scss +15 -0
  80. data/_sass/utilities/_spacing.scss +162 -0
  81. data/_sass/utilities/_typography.scss +85 -0
  82. data/_sass/utilities/utilities.scss +5 -0
  83. data/_sass/vendor/OneDarkJekyll/LICENSE +21 -0
  84. data/_sass/vendor/OneDarkJekyll/README.md +25 -0
  85. data/_sass/vendor/OneDarkJekyll/colors.less +30 -0
  86. data/_sass/vendor/OneDarkJekyll/syntax-firewatch-green.scss +200 -0
  87. data/_sass/vendor/OneDarkJekyll/syntax-firewatch.scss +200 -0
  88. data/_sass/vendor/OneDarkJekyll/syntax-one-dark-vivid.scss +200 -0
  89. data/_sass/vendor/OneDarkJekyll/syntax-one-dark.scss +200 -0
  90. data/_sass/vendor/OneDarkJekyll/syntax-variables.less +56 -0
  91. data/_sass/vendor/OneDarkJekyll/syntax.less +93 -0
  92. data/_sass/vendor/normalize.scss/README.md +7 -0
  93. data/_sass/vendor/normalize.scss/normalize.scss +351 -0
  94. data/assets/css/just-the-docs-dark.scss +3 -0
  95. data/assets/css/just-the-docs-default.scss +8 -0
  96. data/assets/css/just-the-docs-light.scss +3 -0
  97. data/assets/favicon/android-chrome-192x192.png +0 -0
  98. data/assets/favicon/android-chrome-512x512.png +0 -0
  99. data/assets/favicon/apple-touch-icon.png +0 -0
  100. data/assets/favicon/favicon-16x16.png +0 -0
  101. data/assets/favicon/favicon-32x32.png +0 -0
  102. data/assets/favicon/favicon.ico +0 -0
  103. data/assets/favicon/site.webmanifest +1 -0
  104. data/assets/images/.gitkeep +0 -0
  105. data/assets/images/hm-logo.svg +1 -0
  106. data/assets/images/search.svg +1 -0
  107. data/assets/js/just-the-docs.js +528 -0
  108. data/assets/js/vendor/lunr.min.js +61 -0
  109. data/assets/js/zzzz-search-data.json +74 -0
  110. data/bin/just-the-hm-docs +16 -0
  111. data/changelog.md +17 -0
  112. data/favicon.ico +0 -0
  113. data/lib/tasks/search.rake +88 -0
  114. metadata +217 -0
@@ -0,0 +1,30 @@
1
+ // Config -----------------------------------
2
+ @syntax-hue: 220;
3
+ @syntax-saturation: 13%;
4
+ @syntax-brightness: 18%;
5
+
6
+
7
+ // Monochrome -----------------------------------
8
+ @mono-1: hsl(@syntax-hue, 14%, 71%); // default text
9
+ @mono-2: hsl(@syntax-hue, 9%, 55%);
10
+ @mono-3: hsl(@syntax-hue, 10%, 40%);
11
+
12
+ // Colors -----------------------------------
13
+ @hue-1: hsl(187, 47%, 55%); // <-cyan
14
+ @hue-2: hsl(207, 82%, 66%); // <-blue
15
+ @hue-3: hsl(286, 60%, 67%); // <-purple
16
+ @hue-4: hsl( 95, 38%, 62%); // <-green
17
+
18
+ @hue-5: hsl(355, 65%, 65%); // <-red 1
19
+ @hue-5-2: hsl( 5, 48%, 51%); // <-red 2
20
+
21
+ @hue-6: hsl( 29, 54%, 61%); // <-orange 1
22
+ @hue-6-2: hsl( 39, 67%, 69%); // <-orange 2
23
+
24
+
25
+ // Base colors -----------------------------------
26
+ @syntax-fg: @mono-1;
27
+ @syntax-bg: hsl(@syntax-hue, @syntax-saturation, @syntax-brightness);
28
+ @syntax-gutter: darken(@syntax-fg, 26%);
29
+ @syntax-guide: fade(@syntax-fg, 15%);
30
+ @syntax-accent: hsl(@syntax-hue, 100%, 66% );
@@ -0,0 +1,200 @@
1
+ .highlight,
2
+ pre.highlight {
3
+ background: #282c34;
4
+ color: #abb2bf;
5
+ }
6
+ .highlight pre {
7
+ background: #282c34;
8
+ }
9
+ .highlight .hll {
10
+ background: #282c34;
11
+ }
12
+ .highlight .c {
13
+ color: #5c6370;
14
+ font-style: italic;
15
+ }
16
+ .highlight .err {
17
+ color: #960050;
18
+ background-color: #1e0010;
19
+ }
20
+ .highlight .k {
21
+ color: #5ba473;
22
+ }
23
+ .highlight .l {
24
+ color: #c8ae9d;
25
+ }
26
+ .highlight .n {
27
+ color: #abb2bf;
28
+ }
29
+ .highlight .o {
30
+ color: #abb2bf;
31
+ }
32
+ .highlight .p {
33
+ color: #abb2bf;
34
+ }
35
+ .highlight .cm {
36
+ color: #5c6370;
37
+ font-style: italic;
38
+ }
39
+ .highlight .cp {
40
+ color: #5c6370;
41
+ font-style: italic;
42
+ }
43
+ .highlight .c1 {
44
+ color: #5c6370;
45
+ font-style: italic;
46
+ }
47
+ .highlight .cs {
48
+ color: #5c6370;
49
+ font-style: italic;
50
+ }
51
+ .highlight .ge {
52
+ font-style: italic;
53
+ }
54
+ .highlight .gs {
55
+ font-weight: 700;
56
+ }
57
+ .highlight .kc {
58
+ color: #5ba473;
59
+ }
60
+ .highlight .kd {
61
+ color: #5ba473;
62
+ }
63
+ .highlight .kn {
64
+ color: #5ba473;
65
+ }
66
+ .highlight .kp {
67
+ color: #5ba473;
68
+ }
69
+ .highlight .kr {
70
+ color: #5ba473;
71
+ }
72
+ .highlight .kt {
73
+ color: #5ba473;
74
+ }
75
+ .highlight .ld {
76
+ color: #c8ae9d;
77
+ }
78
+ .highlight .m {
79
+ color: #d19a66;
80
+ }
81
+ .highlight .s {
82
+ color: #c8ae9d;
83
+ }
84
+ .highlight .na {
85
+ color: #d19a66;
86
+ }
87
+ .highlight .nb {
88
+ color: #e5c07b;
89
+ }
90
+ .highlight .nc {
91
+ color: #e5c07b;
92
+ }
93
+ .highlight .no {
94
+ color: #e5c07b;
95
+ }
96
+ .highlight .nd {
97
+ color: #e5c07b;
98
+ }
99
+ .highlight .ni {
100
+ color: #e5c07b;
101
+ }
102
+ .highlight .ne {
103
+ color: #e5c07b;
104
+ }
105
+ .highlight .nf {
106
+ color: #abb2bf;
107
+ }
108
+ .highlight .nl {
109
+ color: #e5c07b;
110
+ }
111
+ .highlight .nn {
112
+ color: #abb2bf;
113
+ }
114
+ .highlight .nx {
115
+ color: #abb2bf;
116
+ }
117
+ .highlight .py {
118
+ color: #e5c07b;
119
+ }
120
+ .highlight .nt {
121
+ color: #77b181;
122
+ }
123
+ .highlight .nv {
124
+ color: #e5c07b;
125
+ }
126
+ .highlight .ow {
127
+ font-weight: 700;
128
+ }
129
+ .highlight .w {
130
+ color: #f8f8f2;
131
+ }
132
+ .highlight .mf {
133
+ color: #d19a66;
134
+ }
135
+ .highlight .mh {
136
+ color: #d19a66;
137
+ }
138
+ .highlight .mi {
139
+ color: #d19a66;
140
+ }
141
+ .highlight .mo {
142
+ color: #d19a66;
143
+ }
144
+ .highlight .sb {
145
+ color: #c8ae9d;
146
+ }
147
+ .highlight .sc {
148
+ color: #c8ae9d;
149
+ }
150
+ .highlight .sd {
151
+ color: #c8ae9d;
152
+ }
153
+ .highlight .s2 {
154
+ color: #c8ae9d;
155
+ }
156
+ .highlight .se {
157
+ color: #c8ae9d;
158
+ }
159
+ .highlight .sh {
160
+ color: #c8ae9d;
161
+ }
162
+ .highlight .si {
163
+ color: #c8ae9d;
164
+ }
165
+ .highlight .sx {
166
+ color: #c8ae9d;
167
+ }
168
+ .highlight .sr {
169
+ color: #56b6c2;
170
+ }
171
+ .highlight .s1 {
172
+ color: #c8ae9d;
173
+ }
174
+ .highlight .ss {
175
+ color: #56b6c2;
176
+ }
177
+ .highlight .bp {
178
+ color: #e5c07b;
179
+ }
180
+ .highlight .vc {
181
+ color: #e5c07b;
182
+ }
183
+ .highlight .vg {
184
+ color: #e5c07b;
185
+ }
186
+ .highlight .vi {
187
+ color: #77b181;
188
+ }
189
+ .highlight .il {
190
+ color: #d19a66;
191
+ }
192
+ .highlight .gu {
193
+ color: #75715e;
194
+ }
195
+ .highlight .gd {
196
+ color: #f92672;
197
+ }
198
+ .highlight .gi {
199
+ color: #a6e22e;
200
+ }
@@ -0,0 +1,200 @@
1
+ .highlight,
2
+ pre.highlight {
3
+ background: #282c34;
4
+ color: #abb2bf;
5
+ }
6
+ .highlight pre {
7
+ background: #282c34;
8
+ }
9
+ .highlight .hll {
10
+ background: #282c34;
11
+ }
12
+ .highlight .c {
13
+ color: #5c6370;
14
+ font-style: italic;
15
+ }
16
+ .highlight .err {
17
+ color: #960050;
18
+ background-color: #1e0010;
19
+ }
20
+ .highlight .k {
21
+ color: #dd672c;
22
+ }
23
+ .highlight .l {
24
+ color: #c8ae9d;
25
+ }
26
+ .highlight .n {
27
+ color: #abb2bf;
28
+ }
29
+ .highlight .o {
30
+ color: #abb2bf;
31
+ }
32
+ .highlight .p {
33
+ color: #abb2bf;
34
+ }
35
+ .highlight .cm {
36
+ color: #5c6370;
37
+ font-style: italic;
38
+ }
39
+ .highlight .cp {
40
+ color: #5c6370;
41
+ font-style: italic;
42
+ }
43
+ .highlight .c1 {
44
+ color: #5c6370;
45
+ font-style: italic;
46
+ }
47
+ .highlight .cs {
48
+ color: #5c6370;
49
+ font-style: italic;
50
+ }
51
+ .highlight .ge {
52
+ font-style: italic;
53
+ }
54
+ .highlight .gs {
55
+ font-weight: 700;
56
+ }
57
+ .highlight .kc {
58
+ color: #dd672c;
59
+ }
60
+ .highlight .kd {
61
+ color: #dd672c;
62
+ }
63
+ .highlight .kn {
64
+ color: #dd672c;
65
+ }
66
+ .highlight .kp {
67
+ color: #dd672c;
68
+ }
69
+ .highlight .kr {
70
+ color: #dd672c;
71
+ }
72
+ .highlight .kt {
73
+ color: #dd672c;
74
+ }
75
+ .highlight .ld {
76
+ color: #c8ae9d;
77
+ }
78
+ .highlight .m {
79
+ color: #d19a66;
80
+ }
81
+ .highlight .s {
82
+ color: #c8ae9d;
83
+ }
84
+ .highlight .na {
85
+ color: #d19a66;
86
+ }
87
+ .highlight .nb {
88
+ color: #e5c07b;
89
+ }
90
+ .highlight .nc {
91
+ color: #e5c07b;
92
+ }
93
+ .highlight .no {
94
+ color: #e5c07b;
95
+ }
96
+ .highlight .nd {
97
+ color: #e5c07b;
98
+ }
99
+ .highlight .ni {
100
+ color: #e5c07b;
101
+ }
102
+ .highlight .ne {
103
+ color: #e5c07b;
104
+ }
105
+ .highlight .nf {
106
+ color: #abb2bf;
107
+ }
108
+ .highlight .nl {
109
+ color: #e5c07b;
110
+ }
111
+ .highlight .nn {
112
+ color: #abb2bf;
113
+ }
114
+ .highlight .nx {
115
+ color: #abb2bf;
116
+ }
117
+ .highlight .py {
118
+ color: #e5c07b;
119
+ }
120
+ .highlight .nt {
121
+ color: #e06c75;
122
+ }
123
+ .highlight .nv {
124
+ color: #e5c07b;
125
+ }
126
+ .highlight .ow {
127
+ font-weight: 700;
128
+ }
129
+ .highlight .w {
130
+ color: #f8f8f2;
131
+ }
132
+ .highlight .mf {
133
+ color: #d19a66;
134
+ }
135
+ .highlight .mh {
136
+ color: #d19a66;
137
+ }
138
+ .highlight .mi {
139
+ color: #d19a66;
140
+ }
141
+ .highlight .mo {
142
+ color: #d19a66;
143
+ }
144
+ .highlight .sb {
145
+ color: #c8ae9d;
146
+ }
147
+ .highlight .sc {
148
+ color: #c8ae9d;
149
+ }
150
+ .highlight .sd {
151
+ color: #c8ae9d;
152
+ }
153
+ .highlight .s2 {
154
+ color: #c8ae9d;
155
+ }
156
+ .highlight .se {
157
+ color: #c8ae9d;
158
+ }
159
+ .highlight .sh {
160
+ color: #c8ae9d;
161
+ }
162
+ .highlight .si {
163
+ color: #c8ae9d;
164
+ }
165
+ .highlight .sx {
166
+ color: #c8ae9d;
167
+ }
168
+ .highlight .sr {
169
+ color: #56b6c2;
170
+ }
171
+ .highlight .s1 {
172
+ color: #c8ae9d;
173
+ }
174
+ .highlight .ss {
175
+ color: #56b6c2;
176
+ }
177
+ .highlight .bp {
178
+ color: #e5c07b;
179
+ }
180
+ .highlight .vc {
181
+ color: #e5c07b;
182
+ }
183
+ .highlight .vg {
184
+ color: #e5c07b;
185
+ }
186
+ .highlight .vi {
187
+ color: #e06c75;
188
+ }
189
+ .highlight .il {
190
+ color: #d19a66;
191
+ }
192
+ .highlight .gu {
193
+ color: #75715e;
194
+ }
195
+ .highlight .gd {
196
+ color: #f92672;
197
+ }
198
+ .highlight .gi {
199
+ color: #a6e22e;
200
+ }
@@ -0,0 +1,200 @@
1
+ .highlight,
2
+ pre.highlight {
3
+ background: #31343f;
4
+ color: #dee2f7;
5
+ }
6
+ .highlight pre {
7
+ background: #31343f;
8
+ }
9
+ .highlight .hll {
10
+ background: #31343f;
11
+ }
12
+ .highlight .c {
13
+ color: #63677e;
14
+ font-style: italic;
15
+ }
16
+ .highlight .err {
17
+ color: #960050;
18
+ background-color: #1e0010;
19
+ }
20
+ .highlight .k {
21
+ color: #e19ef5;
22
+ }
23
+ .highlight .l {
24
+ color: #a3eea0;
25
+ }
26
+ .highlight .n {
27
+ color: #dee2f7;
28
+ }
29
+ .highlight .o {
30
+ color: #dee2f7;
31
+ }
32
+ .highlight .p {
33
+ color: #dee2f7;
34
+ }
35
+ .highlight .cm {
36
+ color: #63677e;
37
+ font-style: italic;
38
+ }
39
+ .highlight .cp {
40
+ color: #63677e;
41
+ font-style: italic;
42
+ }
43
+ .highlight .c1 {
44
+ color: #63677e;
45
+ font-style: italic;
46
+ }
47
+ .highlight .cs {
48
+ color: #63677e;
49
+ font-style: italic;
50
+ }
51
+ .highlight .ge {
52
+ font-style: italic;
53
+ }
54
+ .highlight .gs {
55
+ font-weight: 700;
56
+ }
57
+ .highlight .kc {
58
+ color: #e19ef5;
59
+ }
60
+ .highlight .kd {
61
+ color: #e19ef5;
62
+ }
63
+ .highlight .kn {
64
+ color: #e19ef5;
65
+ }
66
+ .highlight .kp {
67
+ color: #e19ef5;
68
+ }
69
+ .highlight .kr {
70
+ color: #e19ef5;
71
+ }
72
+ .highlight .kt {
73
+ color: #e19ef5;
74
+ }
75
+ .highlight .ld {
76
+ color: #a3eea0;
77
+ }
78
+ .highlight .m {
79
+ color: #eddc96;
80
+ }
81
+ .highlight .s {
82
+ color: #a3eea0;
83
+ }
84
+ .highlight .na {
85
+ color: #eddc96;
86
+ }
87
+ .highlight .nb {
88
+ color: #fdce68;
89
+ }
90
+ .highlight .nc {
91
+ color: #fdce68;
92
+ }
93
+ .highlight .no {
94
+ color: #fdce68;
95
+ }
96
+ .highlight .nd {
97
+ color: #fdce68;
98
+ }
99
+ .highlight .ni {
100
+ color: #fdce68;
101
+ }
102
+ .highlight .ne {
103
+ color: #fdce68;
104
+ }
105
+ .highlight .nf {
106
+ color: #dee2f7;
107
+ }
108
+ .highlight .nl {
109
+ color: #fdce68;
110
+ }
111
+ .highlight .nn {
112
+ color: #dee2f7;
113
+ }
114
+ .highlight .nx {
115
+ color: #dee2f7;
116
+ }
117
+ .highlight .py {
118
+ color: #fdce68;
119
+ }
120
+ .highlight .nt {
121
+ color: #f9867b;
122
+ }
123
+ .highlight .nv {
124
+ color: #fdce68;
125
+ }
126
+ .highlight .ow {
127
+ font-weight: 700;
128
+ }
129
+ .highlight .w {
130
+ color: #f8f8f2;
131
+ }
132
+ .highlight .mf {
133
+ color: #eddc96;
134
+ }
135
+ .highlight .mh {
136
+ color: #eddc96;
137
+ }
138
+ .highlight .mi {
139
+ color: #eddc96;
140
+ }
141
+ .highlight .mo {
142
+ color: #eddc96;
143
+ }
144
+ .highlight .sb {
145
+ color: #a3eea0;
146
+ }
147
+ .highlight .sc {
148
+ color: #a3eea0;
149
+ }
150
+ .highlight .sd {
151
+ color: #a3eea0;
152
+ }
153
+ .highlight .s2 {
154
+ color: #a3eea0;
155
+ }
156
+ .highlight .se {
157
+ color: #a3eea0;
158
+ }
159
+ .highlight .sh {
160
+ color: #a3eea0;
161
+ }
162
+ .highlight .si {
163
+ color: #a3eea0;
164
+ }
165
+ .highlight .sx {
166
+ color: #a3eea0;
167
+ }
168
+ .highlight .sr {
169
+ color: #7be2f9;
170
+ }
171
+ .highlight .s1 {
172
+ color: #a3eea0;
173
+ }
174
+ .highlight .ss {
175
+ color: #7be2f9;
176
+ }
177
+ .highlight .bp {
178
+ color: #fdce68;
179
+ }
180
+ .highlight .vc {
181
+ color: #fdce68;
182
+ }
183
+ .highlight .vg {
184
+ color: #fdce68;
185
+ }
186
+ .highlight .vi {
187
+ color: #f9867b;
188
+ }
189
+ .highlight .il {
190
+ color: #eddc96;
191
+ }
192
+ .highlight .gu {
193
+ color: #75715e;
194
+ }
195
+ .highlight .gd {
196
+ color: #f92672;
197
+ }
198
+ .highlight .gi {
199
+ color: #a6e22e;
200
+ }