- Feb 13, 2023
-
-
Cassandra Gould van Praag authored
-
- Feb 08, 2023
-
-
Cassandra Gould van Praag authored
-
Cassandra Gould van Praag authored
-
- Feb 07, 2023
-
-
Cassandra Gould van Praag authored
-
Cassandra Gould van Praag authored
-
Cassandra Gould van Praag authored
-
Cassandra Gould van Praag authored
-
- Feb 06, 2023
-
-
Matthew Wang authored
-
- Feb 05, 2023
-
-
Matthew Wang authored
-
Matt Wang authored
-
Matt Wang authored
Co-authored-by:
Simone <26844016+simonebortolin@users.noreply.github.com>
-
Matt Wang authored
-
Christian Bäuerlein authored
Hi there! Thank you for the great theme! I am a happy user and was delighted to see that mermaid support has landed. In some cases the usage of jsDelivr might not be possible for technical or compliance reasons. This commit adds a second way to include the mermaid lib by specifying a path in the mermaid config. This way a local version of the lib can be used. It should be fully backwards compatible, not requiring any action by users that already include the lib from the CDN. I already added some documentation, but I am also happy to extend this, if this change is generally well-received. Cheers, Christian
-
- Jan 31, 2023
-
-
Cassandra Gould van Praag authored
-
Cassandra Gould van Praag authored
Add ruby image version. Error was "google-protobuf-3.21.12-x86_64-linux requires ruby version < 3.2.dev, >= 2.5, which is incompatible with the current version, ruby 3.2.0p0"
-
Cassandra Gould van Praag authored
-
Cassandra Gould van Praag authored
-
Cassandra Gould van Praag authored
-
- Jan 30, 2023
-
-
Cassandra Gould van Praag authored
-
Matt Wang authored
-
M. R. McCormick authored
When customizing `$code-background-color` in `dark.scss`, the result is a multi-color background. (see https://github.com/just-the-docs/just-the-docs/issues/1121#issuecomment-1374976843) This makes OneDarkJekyll code block colors the same as the specified `$code-background-color`, and uses the `$default-body-color` as the line number text color, which can otherwise be invisible due to the default being black and is hard to see on a very dark code block background.
-
Matt Wang authored
-
Matt Wang authored
In #1058, I noted: > Tangentially related work: > ... > - better annotate new features (motivated by writing these docs) > - we should add "New" to new features :) > - we should note when a feature was introduced (I think this is a core part of most software documentation) > - we should annotate things that are "Advanced" in so far as the average Just the Docs user will not use them / they require significant Jekyll knowledge > This came up again in https://github.com/just-the-docs/just-the-docs/discussions/1136#discussioncomment-4716253, so I think it's best for us to resolve this sooner rather than later. This PR is me doing that. I: - have added a headings-level "New" label to every new heading introduced since `v0.3` - added, when possible, inline YAML comments when new configuration options have been introduced I did this by scanning through the CHANGELOG and selecting each feature that is either tagged with `Add` and has documentation. I may have also missed any new features, so some double-checking would be helpful!
-
- Jan 23, 2023
-
-
Flo authored
-
Matt Wang authored
-
Dale Phurrough authored
-
Peter Mosses authored
The migration guide is intended to help those using Just the Docs (as a theme or a remote theme) switch from v0.3.3 to v0.4.0. Co-authored-by:
Matt Wang <matt@matthewwang.me>
-
Matt Wang authored
-
M. R. McCormick authored
Co-authored-by:
m-r-mccormick <m-r-mccormick@users.noreply.github.com>
-
- Jan 18, 2023
-
-
Matt Wang authored
-
Matt Wang authored
This is an alternative PR that resolves #1011. Unlike #1013, this PR defines a *new* SASS file, `_sass/custom/setup.scss`, specifically designed for new custom variables (and other SASS-only constructs). It's imported after our `support` SASS files are (functions, variables), but otherwise is imported before all other files (ex, when CSS is emitted). So, custom callout colors can now be defined in this file. I also move the custom callout colors present in `custom.scss` to the right location. I've added some docs that briefly explain how to use the feature. Feedback is welcome! --- As an aside, I chose not to add a `_includes/css` file that imports this, and then import that file. I think that's only necessary if we're trying to render liquid somehow in the SASS file; since we're not trying to do that for `setup.scss`, I've opted to not include it. If we think this is relevant, I can re-add it. Co-authored-by:
Peter Mosses <18308236+pdmosses@users.noreply.github.com>
-
- Jan 16, 2023
-
-
dependabot[bot] authored
-
dependabot[bot] authored
Bumps [prettier](https://github.com/prettier/prettier) from 2.8.2 to 2.8.3. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.2...2.8.3 ) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by:
dependabot[bot] <support@github.com>
-
- Jan 14, 2023
-
-
Cassandra Gould van Praag authored
-
Cassandra Gould van Praag authored
-
Matt Wang authored
-
Dale Phurrough authored
This is a prototype for review and discussion. My use and testing of this PR is on top of 6d9d4135. The changes are trival to rebase to `main` and I'm happy to do so if this prototype moves forward. * Feature request details in linked issue, fixes just-the-docs/just-the-docs#1067 * I welcome feedback and all discussion * A draft doc site of mine using this PR is at https://docs.hidale.com/ To use the prototype, the two include files need to be customized. Here are mine from the draft website https://github.com/diablodale/dp.docs/commit/9c0d836408af2e72dbce115a01ce6627137e66dd Co-authored-by:
Matt Wang <matt@matthewwang.me>
-
- Jan 13, 2023
-
-
Matt Wang authored
-
Matt Wang authored
In touching up the migration guide, I noticed that many of our documentation site links are broken! For example, on the homepage, this link: <img width="782" alt="screenshot of homepage; code snippet is in next block" src="https://user-images.githubusercontent.com/14893287/210462690-31aa7bf5-dd79-4e8f-a3c5-1213e73771c4.png"> which has the following href ```code <a href="/just-the-docs/just-the-docs/CHANGELOG/">the CHANGELOG</a> ``` duplicates the `baseurl` twice. There are 14 such broken links across the site. Each link duplicates the `baseurl` and `link` tags, which has since been resolved with links being relative by default (there's a set of PRs that document this - I can't find the exact paper trail right now). To resolve this, I: - find and replace site-wide `{{ site.baseurl }}{% link` with `{% link` - tested each link, which now works properly locally *and* on the deploy preview I'm surprised we didn't catch this earlier! I also could be missing something else, in which case feedback on this PR is certainly welcome.
-
- Jan 12, 2023
-
-
Cassandra Gould van Praag authored
-