Skip to content

Commit

Permalink
Tweak some links to better convey information
Browse files Browse the repository at this point in the history
  • Loading branch information
louismaximepiton committed Aug 7, 2024
1 parent 4e954ea commit c18b2a9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion site/content/docs/5.3/about/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ Our latest release, Bootstrap 5, focuses on improving v4's codebase with as few

## Get involved

Get involved with Bootstrap development by [opening an issue]({{< param repo >}}/issues/new/choose) or submitting a pull request. Read our [contributing guidelines]({{< param repo >}}/blob/v{{< param current_version >}}/.github/CONTRIBUTING.md) for information on how we develop.
Get involved with Bootstrap development by [opening an issue]({{< param repo >}}/issues/new/choose) or submitting a pull request. Read our [contributing guidelines]({{< param repo >}}/blob/main/.github/CONTRIBUTING.md) for information on how we develop.
2 changes: 1 addition & 1 deletion site/content/docs/5.3/about/team.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ Bootstrap is maintained by the founding team and a small group of invaluable cor
</div>
{{< /team.inline >}}

Get involved with Bootstrap development by [opening an issue]({{< param repo >}}/issues/new/choose) or submitting a pull request. Read our [contributing guidelines]({{< param repo >}}/blob/v{{< param current_version >}}/.github/CONTRIBUTING.md) for information on how we develop.
Get involved with Bootstrap development by [opening an issue]({{< param repo >}}/issues/new/choose) or submitting a pull request. Read our [contributing guidelines]({{< param repo >}}/blob/main/.github/CONTRIBUTING.md) for information on how we develop.
2 changes: 1 addition & 1 deletion site/content/docs/5.3/getting-started/browsers-devices.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Bootstrap supports the **latest, stable releases** of all major browsers and pla

Alternative browsers which use the latest version of WebKit, Blink, or Gecko, whether directly or via the platform's web view API, are not explicitly supported. However, Bootstrap should (in most cases) display and function correctly in these browsers as well. More specific support information is provided below.

You can find our supported range of browsers and their versions [in our `.browserslistrc file`]({{< param repo >}}/blob/v{{< param current_version >}}/.browserslistrc):
You can find our supported range of browsers and their versions [in our `.browserslistrc` file]({{< param repo >}}/blob/v{{< param current_version >}}/.browserslistrc):

```text
{{< rf.inline >}}
Expand Down
8 changes: 4 additions & 4 deletions site/content/docs/5.3/getting-started/contribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ added:

## Tooling setup

Bootstrap uses [npm scripts](https://docs.npmjs.com/misc/scripts/) to build the documentation and compile source files. Our [package.json]({{< param repo >}}/blob/v{{< param current_version >}}/package.json) houses these scripts for compiling code, running tests, and more. These aren't intended for use outside our repository and documentation.
Bootstrap uses [npm scripts](https://docs.npmjs.com/misc/scripts/) to build the documentation and compile source files. Our [`package.json`]({{< param repo >}}/blob/main/package.json) houses these scripts for compiling code, running tests, and more. These aren't intended for use outside our repository and documentation.

To use our build system and run our documentation locally, you'll need a copy of Bootstrap's source files and Node. Follow these steps and you should be ready to rock:

1. [Download and install Node.js](https://nodejs.org/en/download/), which we use to manage our dependencies.
2. Either [download Bootstrap's sources]({{< param "download.source" >}}) or fork and clone [Bootstrap's repository]({{< param repo >}}).
3. Navigate to the root `/bootstrap` directory and run `npm install` to install our local dependencies listed in [package.json]({{< param repo >}}/blob/v{{< param current_version >}}/package.json).
3. Navigate to the root `/bootstrap` directory and run `npm install` to install our local dependencies listed in [`package.json`]({{< param repo >}}/blob/main/package.json).

When completed, you'll be able to run the various commands provided from the command line.

## Using npm scripts

Our [package.json]({{< param repo >}}/blob/v{{< param current_version >}}/package.json) includes numerous tasks for developing the project. Run `npm run` to see all the npm scripts in your terminal. **Primary tasks include:**
Our [`package.json`]({{< param repo >}}/blob/main/package.json) includes numerous tasks for developing the project. Run `npm run` to see all the npm scripts in your terminal. **Primary tasks include:**

{{< bs-table >}}
| Task | Description |
Expand All @@ -49,7 +49,7 @@ Dart Sass uses a rounding precision of 10 and for efficiency reasons does not al

Bootstrap uses [Autoprefixer](https://github.com/postcss/autoprefixer) (included in our build process) to automatically add vendor prefixes to some CSS properties at build time. Doing so saves us time and code by allowing us to write key parts of our CSS a single time while eliminating the need for vendor mixins like those found in v3.

We maintain the list of browsers supported through Autoprefixer in a separate file within our GitHub repository. See [.browserslistrc]({{< param repo >}}/blob/v{{< param current_version >}}/.browserslistrc) for details.
We maintain the list of browsers supported through Autoprefixer in a separate file within our GitHub repository. See [`.browserslistrc`]({{< param repo >}}/blob/v{{< param current_version >}}/.browserslistrc) for details.

## RTLCSS

Expand Down
2 changes: 1 addition & 1 deletion site/layouts/partials/docs-sidebar.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<nav class="bd-links w-100" id="bd-docs-nav" aria-label="Docs navigation">
<nav class="bd-links w-100 pb-2" id="bd-docs-nav" aria-label="Docs navigation">
{{- $url := split .Permalink "/" -}}
{{- $page_slug := index $url (sub (len $url) 2) -}}

Expand Down

0 comments on commit c18b2a9

Please sign in to comment.