just-the-docs 0.3.2 → 0.4.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +551 -0
  3. data/README.md +18 -5
  4. data/_includes/css/callouts.scss.liquid +93 -0
  5. data/_includes/css/just-the-docs.scss.liquid +2 -1
  6. data/_includes/favicon.html +1 -0
  7. data/_includes/footer_custom.html +3 -0
  8. data/_includes/head.html +6 -1
  9. data/_includes/header_custom.html +0 -0
  10. data/_includes/icons/external_link.html +5 -0
  11. data/_includes/mermaid_config.js +1 -0
  12. data/_includes/nav.html +156 -69
  13. data/_includes/nav_footer_custom.html +0 -0
  14. data/_includes/search_placeholder_custom.html +1 -0
  15. data/_layouts/default.html +60 -18
  16. data/_sass/base.scss +5 -4
  17. data/_sass/buttons.scss +0 -2
  18. data/_sass/code.scss +29 -212
  19. data/_sass/color_schemes/dark.scss +15 -4
  20. data/_sass/color_schemes/light.scss +208 -0
  21. data/_sass/content.scss +59 -19
  22. data/_sass/custom/custom.scss +4 -0
  23. data/_sass/labels.scss +1 -2
  24. data/_sass/layout.scss +3 -2
  25. data/_sass/modules.scss +2 -5
  26. data/_sass/navigation.scss +29 -3
  27. data/_sass/print.scss +1 -1
  28. data/_sass/search.scss +1 -2
  29. data/_sass/skiptomain.scss +30 -0
  30. data/_sass/support/_functions.scss +4 -4
  31. data/_sass/support/_variables.scss +8 -32
  32. data/_sass/support/mixins/_layout.scss +1 -1
  33. data/_sass/tables.scss +1 -2
  34. data/_sass/typography.scss +6 -6
  35. data/_sass/utilities/_colors.scss +0 -2
  36. data/_sass/utilities/_layout.scss +9 -3
  37. data/_sass/utilities/_lists.scss +1 -3
  38. data/_sass/utilities/_spacing.scss +1 -4
  39. data/_sass/utilities/_typography.scss +0 -6
  40. data/_sass/vendor/OneDarkJekyll/LICENSE +21 -0
  41. data/_sass/vendor/OneDarkJekyll/README.md +25 -0
  42. data/_sass/vendor/OneDarkJekyll/colors.less +30 -0
  43. data/_sass/vendor/OneDarkJekyll/syntax-firewatch-green.scss +200 -0
  44. data/_sass/vendor/OneDarkJekyll/syntax-firewatch.scss +200 -0
  45. data/_sass/vendor/OneDarkJekyll/syntax-one-dark-vivid.scss +200 -0
  46. data/_sass/vendor/OneDarkJekyll/syntax-one-dark.scss +200 -0
  47. data/_sass/vendor/OneDarkJekyll/syntax-variables.less +56 -0
  48. data/_sass/vendor/OneDarkJekyll/syntax.less +93 -0
  49. data/_sass/vendor/normalize.scss/README.md +4 -75
  50. data/_sass/vendor/normalize.scss/normalize.scss +159 -235
  51. data/assets/images/large-image.jpg +0 -0
  52. data/assets/images/small-image.jpg +0 -0
  53. data/assets/js/just-the-docs.js +15 -2
  54. data/assets/js/zzzz-search-data.json +3 -3
  55. data/favicon.ico +0 -0
  56. data/lib/tasks/search.rake +1 -1
  57. metadata +39 -18
  58. data/_sass/vendor/normalize.scss/package.json +0 -70
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ac9092ff508cd154919cdc59ec256e3a8cc5e77664ac38f56d2150c6677cb824
4
- data.tar.gz: 0dedab94fdb0dfc0d684e9bd164bfe61280c0b197572ac0ee20804d5890c8ee9
3
+ metadata.gz: 276a9876ab7ea255d059f3fab034b1c5a2b761ebb41226b3c40dda1a308498f6
4
+ data.tar.gz: 52d3b15c3642ee6b8c50e05c1560f5b578415a6b662fa5ad7de3cfb77113bf21
5
5
  SHA512:
6
- metadata.gz: 496a3e88439549090a080202977a0eac87f94ddbd6acaf6843fbe8db2a00dddda3b241949ff71f7332d4c736671142571d756807ddc078d45591ba1c0e646791
7
- data.tar.gz: ab731d78317a8dbd1c590cd21a2f93ba942a8e0638221674c3f5123938814ae012112a141a05d88b61de4a3badeedeba2bbf9a7cf1c0e1bc8255e3dd73fdeb96
6
+ metadata.gz: 2a9a998bc8fa70292b635307e4074efee09f88e2505914e3dec306123bcdc490bcc8cdce8c690cbf4aa7fb32abf294653525b5d421eb94ebd9c3d8c92ef70257
7
+ data.tar.gz: 0d1b18248f05366af1ce1b5bbb5a6a8d1f93dff2813483a3e4c246a787bea4037e9f3466fb6552934d779bb2eec51b0da3bb93bc8d8760d0b5d70c551c9d52ed
data/CHANGELOG.md ADDED
@@ -0,0 +1,551 @@
1
+ # CHANGELOG
2
+
3
+ All notable changes to this project are documented in this file.
4
+
5
+ *Note:* The project underwent a major maintenance shift in March 2022.
6
+
7
+ ## HEAD
8
+
9
+ *Note:* This website is built from the `HEAD` of the `main` branch of the theme repository. It includes docs for the following changes, which are *not* in the latest pre-release!
10
+
11
+ ## Pre-release v0.4.0.rc2
12
+
13
+ Hey there! This is likely the last pre-release before releasing `v0.4.0`, which we plan on doing soon (i.e. before the end of the month) - very exciting! Some new additions to highlight:
14
+
15
+ - significant improvement on build time of navigation panel by @pdmosses
16
+ - this is big: for a community member with over 300 pages, we shortened the build time from 3 minutes to 30 seconds!
17
+ - improved accessibility features led by @JPrevost
18
+ - more docs!
19
+
20
+ The intention of this release candidate is to gather even more feedback on a potential `v0.4.0`. As it stands, we have not encountered any breaking changes with early adopters of `v0.4.0.rc1`. If you encounter any - for either of our prereleases - please let us know!
21
+
22
+ ### Trying out pre-release `v0.4.0.rc2`
23
+
24
+ Simlar to the prior release, `v0.4.0.rc2` is a **release candidate** for the theme (i.e., a pre-release) with release `v0.4.0` coming soon. We want your help in testing the changes! As of now, the gem on RubyGems and the repository are updated to `v0.4.0.rc2` - if your version of Just the Docs is not pinned, you'll see the changes the next time you run `bundle install` (if you don't have a `Gemfile.lock`) or `bundle update just-the-docs` (if you do).
25
+
26
+ To use this RC explicitly as a remote theme:
27
+
28
+ ```yml
29
+ remote_theme: just-the-docs/just-the-docs@v0.4.0.rc2
30
+ ```
31
+
32
+ To use this RC explicitly as a gem-based theme, pin the version in your `Gemfile` and re-run `bundle install` or `bundle update just-the-docs`:
33
+
34
+ ```Ruby
35
+ gem "just-the-docs", "0.4.0.rc2"
36
+ ```
37
+
38
+ By default, **users will not be upgraded to `0.4.0.rc2`**. To enforce that explicitly, either:
39
+
40
+ 1. pin your gem version in your `Gemfile`, like so
41
+ ```Ruby
42
+ gem "just-the-docs", "0.3.3"
43
+ ```
44
+ 2. freeze the `remote_theme`, like so
45
+ ```yml
46
+ remote_theme: just-the-docs/just-the-docs@v0.3.3
47
+ ```
48
+
49
+ ### Features
50
+
51
+ - Added: accessible titles to nested page nav toggle by @JPrevost in https://github.com/just-the-docs/just-the-docs/pull/950
52
+ - Added: better title styling for AsciiDoc examples by @alyssais in https://github.com/just-the-docs/just-the-docs/pull/944
53
+ - Added: docs for custom search placeholder by @mattxwang in https://github.com/just-the-docs/just-the-docs/pull/939
54
+ - Added: provide ability to skip to main content by @JPrevost in https://github.com/just-the-docs/just-the-docs/pull/949
55
+ - Fixed: exclude `vendor/` in Jekyll config by @manuelhenke in https://github.com/just-the-docs/just-the-docs/pull/941
56
+ - Fixed: improve build time of navigation panel by @pdmosses in https://github.com/just-the-docs/just-the-docs/pull/956
57
+
58
+ ### Documentation and Maintenance
59
+
60
+ - Added: docs load mermaid.js by default by @mattxwang in https://github.com/just-the-docs/just-the-docs/pull/935
61
+ - Fixed: table of contents on search docs by @robinpokorny in https://github.com/just-the-docs/just-the-docs/pull/940
62
+ - Fixed: broken docs link (custom footer) by @olgarithms in https://github.com/just-the-docs/just-the-docs/pull/951
63
+ - Fixed: clarify version docs by @pdmosses in https://github.com/just-the-docs/just-the-docs/pull/955
64
+ - Deleted: unused script directory by @mattxwang in https://github.com/just-the-docs/just-the-docs/pull/937
65
+
66
+ ### New Contributors
67
+
68
+ * @robinpokorny made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/940
69
+ * @olgarithms made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/951
70
+ * @manuelhenke made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/941
71
+ * @JPrevost made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/950
72
+
73
+ ## Pre-release v0.4.0.rc1
74
+
75
+ ### We're back!
76
+
77
+ Hi all! The Just the Docs team is excited to have our first pre-release in over two years! It is jam-packed with features and bugfixes that have been requested by the community since 2020. They include:
78
+
79
+ - The new callouts component
80
+ - Allowing pages and collections to coexist on the navigation pane
81
+ - New styling: dark syntax highlighting, support for jekyll-asciidoc, word-wrapping instead of overflow for various elements
82
+ - More customization: external nav links, custom nav footers, favicon includes, search color and placeholder configuration, mermaid.js support, and nav sorting
83
+ - Over 20 bugfixes! Big ones include fixing the `rake` command, using `relative_url`, and search input color
84
+ - More documentation, especially on using custom includes
85
+ - Updating core dependencies to stable Ruby versions
86
+ - A WIP [template repository](https://github.com/just-the-docs/just-the-docs-template) that allows you to setup your own repository using Just the Docs and GitHub Pages with one click - give it a shot! More documentation, etc. is on the way!
87
+
88
+ We want your feedback! Are these changes helpful? Are our docs easy to understand? Should new features like `mermaid` be opt-in or opt-out? Please [open an issue](https://github.com/just-the-docs/just-the-docs/issues) or [start a discussion](https://github.com/just-the-docs/just-the-docs/discussions) and let us know!
89
+
90
+ ### Trying out pre-release `v0.4.0.rc1`
91
+
92
+ Due to the massive scope of these changes, we're making `v0.4.0.rc1` avaialble as a **release candidate** for the theme (i.e., a pre-release) with release `v0.4.0` coming soon. We want your help in testing the changes! As of now, the gem on RubyGems and the repository are updated to `v0.4.0.rc1` - if your version of Just the Docs is not pinned, you'll see the changes the next time you run `bundle install` (if you don't have a `Gemfile.lock`) or `bundle update just-the-docs` (if you do).
93
+
94
+ To use this RC explicitly as a remote theme:
95
+
96
+ ```yml
97
+ remote_theme: just-the-docs/just-the-docs@v0.4.0.rc1
98
+ ```
99
+
100
+ To use this RC explicitly as a gem-based theme, pin the version in your `Gemfile` and re-run `bundle install` or `bundle update just-the-docs`:
101
+
102
+ ```Ruby
103
+ gem "just-the-docs", "0.4.0.rc1"
104
+ ```
105
+
106
+ ### Staying on `v0.3.3`
107
+
108
+ If you're not ready to make the switch, that's alright! If your version of just-the-docs is pinned to `v0.3.3` (i.e. by a `Gemfile.lock` or in `remote_theme`, then there's nothing you need to do.
109
+
110
+ If you have not pinned your theme version, you should either:
111
+
112
+ 1. pin your gem version in your `Gemfile`, like so
113
+ ```Ruby
114
+ gem "just-the-docs", "0.3.3"
115
+ ```
116
+ 2. freeze the `remote_theme`, like so
117
+ ```yml
118
+ remote_theme: just-the-docs/just-the-docs@v0.3.3
119
+ ```
120
+
121
+ **Warning**: Use of branches for closed PRs (e.g., https://github.com/just-the-docs/just-the-docs/pull/466, https://github.com/just-the-docs/just-the-docs/pull/578) is now deprecated, as those branches have been (directly or indirectly) merged, and they will be deleted after the release of `v0.4.0.rc1`.
122
+
123
+ ### Maintenance
124
+
125
+ Internally, our maintainer team has expanded: [Patrick Marsceill](https://github.com/pmarsceill), the original maintainer, has stepped down from an active role after almost 4 years! We're very thankful for the work that he's done to create and maintain one of the most popular Jekyll themes. Please join us in giving him thanks!
126
+
127
+ The new core team currently consists of @mattxwang, @pdmosses, @skullface, @dougaitken, and @max06. Over the past six months, we've been triaging and merging in PRs, as well as contributing our own fixes. We'll continue to address open issues, merge in PRs from the community, and plan out the future of Just the Docs. If you'd like to contribute, now is a great time!
128
+
129
+ ### Roadmap
130
+
131
+ In the short-term, we're committed to tidying up everything for a `v0.4.0` release. This involves fixing bugs reported from the community in this pre-release, as well as continually merging in minor PRs.
132
+
133
+ We're also scoping out medium and long-term projects, and want to keep you in the loop. These include:
134
+
135
+ - upgrading to Jekyll 4, and stopping support for Jekyll 3
136
+ - versioned docs - issue [#728](https://github.com/just-the-docs/just-the-docs/issues/728)
137
+ - improved accessibility - issues [#566](https://github.com/just-the-docs/just-the-docs/issues/566), [#870](https://github.com/just-the-docs/just-the-docs/issues/870)
138
+ - internationalization (i18n) - issue [#59](https://github.com/just-the-docs/just-the-docs/issues/59)
139
+ - recursive/multi-level navigation - PR [#462](https://github.com/just-the-docs/just-the-docs/pull/462)
140
+ - toggleable dark mode - issue [#234](https://github.com/just-the-docs/just-the-docs/issues/234)
141
+
142
+ as well as DX improvements like better regression tests, CI, and tooling. If you're interested in any of these, please join us [on GitHub](https://github.com/just-the-docs/just-the-docs) - any contribution (raising an issue, writing docs, or submitting a PR) is welcome!
143
+
144
+ ### Features
145
+
146
+ * Added: Combination by @pdmosses in https://github.com/just-the-docs/just-the-docs/pull/578
147
+ - Added: dark highlighting in https://github.com/just-the-docs/just-the-docs/pull/463
148
+ - Added: pages and collections in https://github.com/just-the-docs/just-the-docs/pull/448
149
+ - Added: callouts in https://github.com/just-the-docs/just-the-docs/pull/466
150
+ - Fixed: breadcrumb behaviour … by @AdityaTiwari2102 in https://github.com/just-the-docs/just-the-docs/pull/477
151
+ - Fixed: prevent rake command corrupting search data in https://github.com/just-the-docs/just-the-docs/pull/495 (also listed below)
152
+ - Fixed: nested lists in https://github.com/just-the-docs/just-the-docs/pull/496
153
+ - Fixed: set color for search input in https://github.com/just-the-docs/just-the-docs/pull/498 (also listed below)
154
+ - Fixed: sites with no child pages (no PR)
155
+ - Fixed: TOC/breadcrumbs for multiple collections in https://github.com/just-the-docs/just-the-docs/pull/494
156
+ - Added: collection configuration option `nav_fold` (no PR)
157
+ - Fixed: indentation and color for folded collection navigation (no PR)
158
+ - Fixed: scroll navigation to show the link to the current page in https://github.com/just-the-docs/just-the-docs/pull/639
159
+ - Fixed: Replace all uses of `absolute_url` by `relative_url`, by @svrooij in https://github.com/just-the-docs/just-the-docs/pull/544
160
+ * Added: custom favicon `_includes` by @burner1024 in https://github.com/just-the-docs/just-the-docs/pull/364
161
+ * Added: set color for search input by @pdmosses in https://github.com/just-the-docs/just-the-docs/pull/498
162
+ * Added: search placeholder configuration by @mattxwang in https://github.com/just-the-docs/just-the-docs/pull/613
163
+ * Added: 'child_nav_order' front matter to be able to sort navigation pages in reverse by @jmertic in https://github.com/just-the-docs/just-the-docs/pull/726
164
+ * Added: `nav_footer_custom` include by @nathanjessen in https://github.com/just-the-docs/just-the-docs/pull/474
165
+ * Added: style fixes for jekyll-asciidoc by @alyssais in https://github.com/just-the-docs/just-the-docs/pull/829
166
+ * Added: mermaid.js support by @nascosto in https://github.com/just-the-docs/just-the-docs/pull/857
167
+ * Added: support for external navigation links by @SPGoding in https://github.com/just-the-docs/just-the-docs/pull/876
168
+ * Added: refactor `mermaid` config to use `mermaid_config.js` include, only require `mermaid.version` in `_config.yml` by @mattxwang in https://github.com/just-the-docs/just-the-docs/pull/909
169
+ * Fixed: prepend `site.collections_dir` if exists by @alexsegura in https://github.com/just-the-docs/just-the-docs/pull/519
170
+ * Fixed: nested task lists (#517) by @pdmosses in https://github.com/just-the-docs/just-the-docs/pull/855
171
+ * Fixed: suppress Liquid processing in CSS comments by @pdmosses in https://github.com/just-the-docs/just-the-docs/pull/686
172
+ * Fixed: prevent rake command from corrupting search data by @pdmosses in https://github.com/just-the-docs/just-the-docs/pull/495
173
+ * Fixed: anchor heading links should be visible on focus by @jacobhq in https://github.com/just-the-docs/just-the-docs/pull/846
174
+ * Fixed: add `overflow-x: auto` to `figure.highlight` by @iridazzle in https://github.com/just-the-docs/just-the-docs/pull/727
175
+ * Fixed: add `overflow-wrap: word-break` to `body` by @iridazzle in https://github.com/just-the-docs/just-the-docs/pull/889
176
+ * Fixed: vertical alignment for consecutive labels by @Eisverygoodletter in https://github.com/just-the-docs/just-the-docs/pull/893
177
+ * Fixed: allow links to wrap by @pdmosses in https://github.com/just-the-docs/just-the-docs/pull/905
178
+ * Fixed: nav scroll feature and absolute/relative URLs by @pdmosses in https://github.com/just-the-docs/just-the-docs/pull/898
179
+
180
+ ### Documentation
181
+
182
+ * Added: docs on how to break an `ol` by @pdmosses in https://github.com/just-the-docs/just-the-docs/pull/856
183
+ * Added: docs for custom includes by @nathanjessen in https://github.com/just-the-docs/just-the-docs/pull/806
184
+ * Added: document caveat about variable dependencies by @waldyrious in https://github.com/just-the-docs/just-the-docs/pull/555
185
+ * Added: docs on how to use `custom_head` to add a custom favicon by @UnclassedPenguin in https://github.com/just-the-docs/just-the-docs/pull/814
186
+ * Fixed: `ol` on `index.md` by @pmarsceill in https://github.com/just-the-docs/just-the-docs/pull/778
187
+ * Fixed: image link in Markdown kitchen sink by @JeffGuKang in https://github.com/just-the-docs/just-the-docs/pull/221
188
+ * Fixed: images in Markdown kitchen sink by @dougaitken in https://github.com/just-the-docs/just-the-docs/pull/782
189
+ * Fixed: clearer label of link to Jekyll quickstart by @waldyrious in https://github.com/just-the-docs/just-the-docs/pull/549
190
+ * Fixed: remove extra spaces in component docs by @MichelleBlanchette in https://github.com/just-the-docs/just-the-docs/pull/554
191
+ * Fixed: double "your" typo in `index.md` by @sehilyi in https://github.com/just-the-docs/just-the-docs/pull/499
192
+ * Fixed: "you" -> "your" typo in `index.md` by @nathanjessen in https://github.com/just-the-docs/just-the-docs/pull/473
193
+ * Fixed: spacing in toc example by @henryiii in https://github.com/just-the-docs/just-the-docs/pull/835
194
+ * Fixed: typo in `README` on `_config.yml` by @ivanskodje in https://github.com/just-the-docs/just-the-docs/pull/891
195
+ * Fixed: missing code fence in navigation structure docs by @mattxwang in https://github.com/just-the-docs/just-the-docs/pull/906
196
+
197
+ ### Maintenance
198
+
199
+ * Added: VScode devcontainer by @max06 in https://github.com/just-the-docs/just-the-docs/pull/783
200
+ * Added: `webrick` to `Gemfile` by @mattxwang in https://github.com/just-the-docs/just-the-docs/pull/799
201
+ * Added: 'This site is powered by Netlify.' to the footer by @mattxwang in https://github.com/just-the-docs/just-the-docs/pull/797
202
+ * Updated: new repo path by @pmarsceill in https://github.com/just-the-docs/just-the-docs/pull/775
203
+ * Updated: rename `master` -> `main` by @pmarsceill in https://github.com/just-the-docs/just-the-docs/pull/776
204
+ * Updated: README by @pmarsceill in https://github.com/just-the-docs/just-the-docs/pull/777
205
+ * Updated: Code of Conduct to Contributor Covenant v2.1 by @mattxwang in https://github.com/just-the-docs/just-the-docs/pull/790
206
+ * Updated: CI files, Ruby & Node Versions by @mattxwang in https://github.com/just-the-docs/just-the-docs/pull/820
207
+ * Updated: Stylelint to v14, extend SCSS plugins, remove primer-* configs, resolve issues by @mattxwang in https://github.com/just-the-docs/just-the-docs/pull/821
208
+
209
+ ### Dependencies
210
+ * Upgrade to GitHub-native Dependabot by @dependabot-preview in https://github.com/just-the-docs/just-the-docs/pull/627
211
+ * [Security] Bump y18n from 3.2.1 to 3.2.2 by @dependabot-preview in https://github.com/just-the-docs/just-the-docs/pull/606
212
+ * [Security] Bump hosted-git-info from 2.7.1 to 2.8.9 by @dependabot-preview in https://github.com/just-the-docs/just-the-docs/pull/641
213
+ * [Security] Bump lodash from 4.17.19 to 4.17.21 by @dependabot-preview in https://github.com/just-the-docs/just-the-docs/pull/640
214
+ * [Security] Bump ini from 1.3.5 to 1.3.8 by @dependabot-preview in https://github.com/just-the-docs/just-the-docs/pull/511
215
+ * Bump path-parse from 1.0.6 to 1.0.7 by @dependabot in https://github.com/just-the-docs/just-the-docs/pull/699
216
+ * Bump ajv from 6.10.0 to 6.12.6 by @dependabot in https://github.com/just-the-docs/just-the-docs/pull/766
217
+ * Bump prettier from 2.1.2 to 2.5.1 by @dependabot in https://github.com/just-the-docs/just-the-docs/pull/787
218
+ * Bump prettier from 2.5.1 to 2.6.2 by @dependabot in https://github.com/just-the-docs/just-the-docs/pull/809
219
+ * Bump prettier from 2.6.2 to 2.7.1 by @dependabot in https://github.com/just-the-docs/just-the-docs/pull/864
220
+
221
+ ### New Contributors
222
+ * @alexsegura made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/519
223
+ * @burner1024 made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/364
224
+ * @JeffGuKang made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/221
225
+ * @dougaitken made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/782
226
+ * @max06 made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/783
227
+ * @sehilyi made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/499
228
+ * @nathanjessen made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/473
229
+ * @waldyrious made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/549
230
+ * @MichelleBlanchette made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/554
231
+ * @henryiii made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/835
232
+ * @jmertic made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/726
233
+ * @jacobhq made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/846
234
+ * @UnclassedPenguin made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/814
235
+ * @alyssais made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/829
236
+ * @nascosto made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/857
237
+ * @SPGoding made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/876
238
+ * @iridazzle made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/727
239
+ * @ivanskodje made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/891
240
+ * @Eisverygoodletter made their first contribution in https://github.com/just-the-docs/just-the-docs/pull/893
241
+
242
+ **Full Changelog**: https://github.com/just-the-docs/just-the-docs/compare/v0.3.3...v0.4.0.rc1
243
+
244
+ ## v0.3.3
245
+
246
+ ### 🚀 Features
247
+
248
+ - Add custom header and footer include files @CodeSandwich (#334)
249
+
250
+ ### 🐛 Bug Fixes
251
+
252
+ - Limit the effect of `nav_exclude` to the main navigation @pdmosses (#443)
253
+ - Update normalize.scss @pdmosses (#444)
254
+ - Update code.scss @pdmosses (#445)
255
+ - Fix list alignment @pdmosses (#446)
256
+
257
+ ### 🧰 Maintenance
258
+
259
+ - Bump stylelint-config-primer from 9.0.0 to 9.2.1 @dependabot-preview (#451)
260
+ - Bump stylelint from 13.6.1 to 13.7.2 @dependabot-preview (#440)
261
+ - Bump @primer/css from 15.1.0 to 15.2.0 @dependabot-preview (#436)
262
+ - Bump prettier from 2.1.1 to 2.1.2 @dependabot-preview (#429)
263
+
264
+ ## v0.3.2
265
+
266
+ ### Changes
267
+
268
+ - Safe page sorting @pdmosses (#411)
269
+ - v0.3.2 @pmarsceill (#388)
270
+
271
+ ### 🚀 Features
272
+
273
+ - make font-sizes sass variables so they can be changed @pdebruic (#361)
274
+ - run the site locally inside docker container @fogfish (#398)
275
+ - Feature/doc collections @SgtSilvio (#379)
276
+ - Adjust dl layout @pdmosses (#401)
277
+
278
+ ### 🐛 Bug Fixes
279
+
280
+ - Add site.gh_edit_source to "Edit this page on GitHub" link @mrfleap (#418)
281
+ - Inhibit text-transform for code in h4 @pdmosses (#404)
282
+ - Fix native font stack precedence issue on Windows systems. @hvianna (#331)
283
+ - Support for the linenos option on highlighted code @pdmosses (#375)
284
+ - Update anchor_headings.html @pdmosses (#399)
285
+ - Fix https @marksie1988 (#359)
286
+
287
+ ### 🧰 Maintenance
288
+
289
+ - Bump prettier from 2.0.5 to 2.1.1 @dependabot-preview (#427)
290
+ - Bump prettier from 2.0.5 to 2.1.1 @dependabot-preview (#419)
291
+ - [Security] Bump lodash from 4.17.15 to 4.17.19 @dependabot-preview (#389)
292
+ - Bump @primer/css from 14.4.0 to 15.1.0 @dependabot-preview (#402)
293
+ - Bump lodash from 4.17.15 to 4.17.19 @dependabot (#384)
294
+ - Bump @primer/css from 14.4.0 to 15.0.0 @dependabot-preview (#371)
295
+
296
+
297
+ ## v0.3.1
298
+
299
+ ### Changes
300
+
301
+ ### 🐛 Bug Fixes
302
+
303
+ - Improve accessibility by adding label to Anchor links. @mscoutermarsh (#376)
304
+
305
+ ### 🧰 Maintenance
306
+
307
+ - Remove collapsible TOC on nav doc @pmarsceill (#368)
308
+ - Pdmosses collapsible toc @pmarsceill (#367)
309
+
310
+
311
+ ## v0.3.0
312
+
313
+ ### Changes
314
+
315
+ - v0.2.9 @pmarsceill (#306)
316
+
317
+ ### 🚀 Features
318
+
319
+ - Add print styles @pmarsceill (#362)
320
+ - Navigation improvements and search sections @SgtSilvio (#352)
321
+
322
+ ### 🐛 Bug Fixes
323
+
324
+ - Remove constraint with jekyll 4.1.0 @PierrickMartos (#348)
325
+
326
+ ### 🧰 Maintenance
327
+
328
+ - Bump version numbers @pmarsceill (#360)
329
+ - Bump stylelint from 13.3.3 to 13.6.1 @dependabot-preview (#343)
330
+ - Bump stylelint-config-prettier from 8.0.1 to 8.0.2 @dependabot-preview (#349)
331
+
332
+
333
+ ## v0.2.9
334
+
335
+ ### Bug fixes
336
+ - Horizontal Alignment #103 @pmarsceill
337
+ - Code snippet in headers do not inherit font size #140 @pmarsceill
338
+ - Fix duplicated title and description tags #294 @iefserge
339
+ - Update nav.html for handling nav_exclude #282 @blawqchain
340
+ - Fix duplicate entries in nav.html and default.html #239 @KasparEtter
341
+ - Don't show pages with no title (e.g. redirects in nav) https://github.com/pmarsceill/just-the-docs/pull/295/commits/672de29f2e332a9350af7237e4fb6693c848989e @SgtSilvio
342
+ - [SEARCH RAKE] Fix search generator #319 @RoiArthurB
343
+
344
+ ### Enhancements
345
+ - Improvement/custom themes #186 @SgtSilvio
346
+ - feat: adds "edit this page" and "page last modified" to footer #217 @malsf21
347
+ - feat: adds option to open aux links in new tab #229 @malsf21
348
+ - Default nav order #236 @pdmosses
349
+ - Enable IP anonymization in Google Analytics (GDPR) #250 @r-brown
350
+
351
+ closes #240 #308 #266 #140 #103
352
+
353
+ ## v0.2.8
354
+
355
+ ### Bugfixes
356
+ - bugfix in search.rake #218 @tiaitsch85
357
+
358
+ ### Dependency and security updates:
359
+
360
+ - Update jekyll requirement from ~> 3.8.5 to >= 3.8.5, < 4.1.0 #197 @dependabot-preview
361
+ - Update rake requirement from ~> 12.3.1 to >= 12.3.1, < 13.1.0 #227 @dependabot-preview
362
+ - Bump stylelint-config-primer from 8.0.0 to 9.0.0 #247 @dependabot-preview
363
+ - Update bundler requirement from ~> 2.0.1 to ~> 2.1.4 #268 @dependabot-preview
364
+ - Bump @primer/css from 12.7.0 to 14.3.0 #296 @dependabot-preview
365
+
366
+ ### Operations
367
+
368
+ - Update CI to test multiple versions of Jekyll
369
+ - Update CI to check the rake command that builds the search file
370
+
371
+ fixes #291 #256 #293 #177
372
+
373
+ ## v0.2.7
374
+
375
+ ### Bugs fixed
376
+ - Anchor headings are now displayed on hover, not only on heading hover
377
+ - Deduplicated anchor heading svg
378
+ - If last page of `site.html_pages` was excluded from search, search json breaks
379
+ - Config variable should be `blanklines` not `blank_lines` for html compression
380
+ - `list-style-none` does not hide bullets on `ul`
381
+
382
+ ### Enhancements
383
+ - Summary for child pages appears in generated TOC
384
+ - Site logo configuration supported replacing title text with image
385
+ - Allow custom CSS overrides (new scss partial at the end of the cascade) separate from variable overrides.
386
+ - Configuration around search strings added to allow search for hyphenated words
387
+
388
+ ### Maintenance
389
+ - Update docs to suggest using index.md as section page filename
390
+ - Bump @primer/css from 12.6.0 to 12.7.0
391
+ - Bump mixin-deep from 1.3.1 to 1.3.2
392
+ - Bump stylelint-config-primer from 7.0.1 to 8.0.0
393
+
394
+ ### PR included
395
+ - #98 by @stefanoborini Introduces the possibility for a summary in the table of contents
396
+ - #141 by @ghabs Fix trailing comma bug in search-data.json
397
+ - #153 by @jacobherrington Change button copy on theme preview
398
+ - #181 by @m3nu Recommend using index.md as parent page for sections
399
+ - #183 by @SgtSilvio Improve heading anchors
400
+ - #187 by @SgtSilvio Improvement/site logo
401
+ - #200 Bump mixin-deep from 1.3.1 to 1.3.2
402
+ - #203 by @pdmosses Search config
403
+ - #205 by @pdmosses Fix blank_lines var to blanklines in config.yml
404
+ - #206 by @iamcarrico Allow for custom overrides by the user
405
+ - #208 Bump @primer/css from 12.6.0 to 12.7.0
406
+ - #213 Bump mixin-deep from 1.3.1 to 1.3.2
407
+ - #214 Bump stylelint-config-primer from 7.0.1 to 8.0.0
408
+ - #215 Bump @primer/css from 12.6.0 to 12.7.0
409
+
410
+ ## v0.2.6
411
+
412
+ ### Bugs fixed
413
+ - Google Analytics tag has been updated #162
414
+ - ~BaseURL has been modified #109~ Reverted -- seems the existing implementation worked
415
+ - Titles can now wrap fixes #106
416
+
417
+ ### Enhancements
418
+ - Search now displays content preview #135
419
+ - Custom footer content added #179
420
+ - Now using GitHub Actions for CI #170
421
+
422
+ ### Maintenance
423
+ - lunrjs upgraded #135
424
+ - Nav generation is optimized #159
425
+ - Stylelint upgrade #143
426
+ - Stylelint config primer upgrade #149
427
+ - Lodash upgrade #160
428
+
429
+ ### PR included
430
+ ~#109 by @daviddarnes - Fix baseurl link~ Reverted
431
+ #135 by @SgtSilvio - Upgrades lunr.js, improves search UI, adds heading anchors
432
+ #152 by @yavorg - Improves syntax highlighting for js readablity
433
+ #159 by @julienduchesne - Optimizes nav generation
434
+ #162 by @nergmada - Modifies the google analytics code to match the new tags used by GA
435
+
436
+
437
+ ## v0.2.5
438
+
439
+ ### Bugs fixed
440
+
441
+ - Duplicate title tag when Jekyll SEO Plugin gem is used #125 #126
442
+
443
+ ### Enhancements
444
+
445
+ - Favicon support added #118
446
+
447
+ ### Maintenance
448
+ - Bump stylelint-config-primer from 6.0.0 to 7.0.0 #123
449
+ - Bump @primer/css from 12.2.3 to 12.3.1 #129
450
+ - Add workflow to publish to GPR
451
+ - Fix workflow to publish to Ruby Gems
452
+
453
+ ## v0.2.4
454
+
455
+ ### Bugs
456
+
457
+ - #102 Remove unnecessary console.log() @JoeNyland
458
+ - #97 Import custom Sass variable overrides before default variables are defined @montchr and @ptvandi
459
+
460
+ ### Additions
461
+ - #117 Add links to docs for setting up GH pages locally @gnarea
462
+ - #95 Add SEO and 'lang' param for `_config` @gebeto
463
+
464
+ ## v0.2.3
465
+
466
+ ### Enhancements
467
+ - Adds ability to use Google Analytics tracking by @pmarsceill
468
+
469
+ ### Bug fixes
470
+ - Fixes 404 error for "/assets/js//search-data.json" by @stephenedmondson
471
+ - Fixes #80 Single quotes in the string were unescaped and ruby attempted variable substitution of amp within it (which failed) by @novelistparty
472
+ - Fixes bug that would only show 2 or more search results (not one) by @ilivewithian
473
+ - Fixes a typo on the layout example by @woernfl
474
+ - Fixes #78 Page scroll position too far down on load by @pmarsceill
475
+ - Fixds ability to nest ul in ol without breaking style or counters
476
+
477
+ ### Dependency updates
478
+ - Bumps stylelint dependency from 9.9.0 to 9.10.1
479
+
480
+ ## v0.2.2
481
+
482
+ - Bumps stylelint-config-primer to 3.0.1 #44
483
+ - Bumps bundler req to 2.0.1 #61
484
+ - Adds custom 404 page
485
+ - Excludes package-lock.json from jekyll build #47
486
+ - Fixes keyboard scrolling / focus #48
487
+ - Adds ARIA roles to navigation elements
488
+ - Adds support for optional page description metadata (if present in yaml front matter)
489
+ - Addresses some issues with search in #46
490
+ - Option to hide TOC on parent pages if turned off in page's YAML front matter #30
491
+ - Option to suppress an item from being indexed by search if present in page's YAML front matter #32
492
+
493
+ ## v0.2.1
494
+
495
+ This update fixes security vulnerablities in the lodash sub-dependency and bumps other dev dependencies to their latest version.
496
+
497
+ ## v0.2.0
498
+
499
+ Adds:
500
+ - Dark mode via `color_scheme` parameter
501
+ - Ability to exclude a page from the main nav with `nav_exclude` parameter closes #21
502
+ - Ability for create children of children pages (3 nav levels) closes #25
503
+
504
+ Changes:
505
+ - Permalink structure for tiered navigation has been updated
506
+ - Some colors have been updated for consistency / accessibility
507
+
508
+ ## v0.1.6
509
+
510
+ ### Added
511
+
512
+ - Support for task list styles #19
513
+ - Configuration docs
514
+ - Configuration option to enable / disable search
515
+ - Normalize.scss dependency pulled into project #16 #
516
+
517
+ ### Fixed
518
+
519
+ - Layout bug in navigation #17
520
+
521
+ ## v0.1.5
522
+
523
+ Major changes:
524
+
525
+ - Fixed bug where the rake task would fail when the assets/js directory didn't exist
526
+
527
+ ## v0.1.4
528
+
529
+ Major changes:
530
+ - Adds Rake as a runtime dependency
531
+ - Definition list styled
532
+ - Sidebar and support cleaned up for smaller screen support
533
+ - Updated some stale docs
534
+
535
+ ## v0.1.3
536
+
537
+ Major changes:
538
+ - Fix path problems, typos, and general clean-up for OSS.
539
+
540
+ ## v0.1.2
541
+
542
+ Fix paths when deployed to gh-pages
543
+
544
+ ## v0.1.1
545
+
546
+ Major updates:
547
+ - Adds search to mobile nav
548
+ - Pulls footer to bottom of the page on mobile (not hidden in nav)
549
+
550
+ Minor updates:
551
+ - Cleans up h1 typography spacing
data/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  <p align="right">
2
- <a href="https://badge.fury.io/rb/just-the-docs"><img src="https://badge.fury.io/rb/just-the-docs.svg" alt="Gem version"></a> <a href="https://github.com/pmarsceill/just-the-docs/actions?query=workflow%3A%22Master+branch+CI%22"><img src="https://github.com/pmarsceill/just-the-docs/workflows/Master%20branch%20CI/badge.svg" alt="Build status"></a>
2
+ <a href="https://badge.fury.io/rb/just-the-docs"><img src="https://badge.fury.io/rb/just-the-docs.svg" alt="Gem version"></a> <a href="https://github.com/just-the-docs/just-the-docs/actions/workflows/ci.yml"><img src="https://github.com/just-the-docs/just-the-docs/actions/workflows/ci.yml/badge.svg" alt="CI Build status"></a> <a href="https://app.netlify.com/sites/just-the-docs/deploys"><img src="https://api.netlify.com/api/v1/badges/9dc0386d-c2a4-4077-ad83-f02c33a6c0ca/deploy-status" alt="Netlify Status"></a>
3
3
  </p>
4
4
  <br><br>
5
5
  <p align="center">
6
6
  <h1 align="center">Just the Docs</h1>
7
7
  <p align="center">A modern, highly customizable, and responsive Jekyll theme for documentation with built-in search.<br>Easily hosted on GitHub Pages with few dependencies.</p>
8
- <p align="center"><strong><a href="https://pmarsceill.github.io/just-the-docs/">See it in action!</a></strong></p>
8
+ <p align="center"><strong><a href="https://just-the-docs.github.io/just-the-docs/">See it in action!</a></strong></p>
9
9
  <br><br><br>
10
10
  </p>
11
11
 
@@ -13,6 +13,17 @@
13
13
 
14
14
  ## Installation
15
15
 
16
+ ### via GitHub Pages remote theme
17
+
18
+ The quickiest way to use Just The Docs is to use GitHub pages [remote theme](https://blog.github.com/2017-11-29-use-any-theme-with-github-pages/) feature in your `_config.yml` file:
19
+
20
+ ```yaml
21
+ remote_theme: just-the-docs/just-the-docs
22
+ ```
23
+ ### via RubyGems:
24
+
25
+ Alternatively you can install it as a Ruby Gem.
26
+
16
27
  Add this line to your Jekyll site's Gemfile:
17
28
 
18
29
  ```ruby
@@ -39,15 +50,15 @@ Alternatively, you can run it inside Docker while developing your site
39
50
 
40
51
  ## Usage
41
52
 
42
- [View the documentation](https://pmarsceill.github.io/just-the-docs/) for usage information.
53
+ [View the documentation](https://just-the-docs.github.io/just-the-docs/) for usage information.
43
54
 
44
55
  ## Contributing
45
56
 
46
- Bug reports and pull requests are welcome on GitHub at https://github.com/pmarsceill/just-the-docs. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
57
+ Bug reports and pull requests are welcome on GitHub at https://github.com/just-the-docs/just-the-docs. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
47
58
 
48
59
  ### Submitting code changes:
49
60
 
50
- - Open a [Pull Request](https://github.com/pmarsceill/just-the-docs/pulls)
61
+ - Open a [Pull Request](https://github.com/just-the-docs/just-the-docs/pulls)
51
62
  - Ensure all CI tests pass
52
63
  - Await code review
53
64
  - Bump the version number in `just-the-docs.gemspec` and `package.json` according to [semantic versioning](https://semver.org/).
@@ -63,6 +74,8 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/pmarsc
63
74
 
64
75
  To set up your environment to develop this theme, run `bundle install`.
65
76
 
77
+ A modern [devcontainer configuration](https://code.visualstudio.com/docs/remote/containers) for VSCode is included.
78
+
66
79
  Your theme is set up just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
67
80
 
68
81
  When the theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.