fix linter issues
BrowserStack / browserstack (push) Has been cancelled Details

This commit is contained in:
Mark Otto 2025-05-31 13:28:43 -07:00
parent 95c97cd3bd
commit f5c8756283
5 changed files with 5 additions and 5 deletions

View File

@ -18,6 +18,7 @@ The accordion uses [collapse]([[docsref:/components/collapse]]) internally to ma
Click the accordions below to expand/collapse the accordion content. Click the accordions below to expand/collapse the accordion content.
To render an accordion thats expanded by default: To render an accordion thats expanded by default:
- add the `.show` class on the `.accordion-collapse` element. - add the `.show` class on the `.accordion-collapse` element.
- drop the `.collapsed` class from the `.accordion-button` element and set its `aria-expanded` attribute to `true`. - drop the `.collapsed` class from the `.accordion-button` element and set its `aria-expanded` attribute to `true`.

View File

@ -48,7 +48,7 @@ Effective documentation requires careful attention to structure and flow. When o
Inline code is available with the `<code>` element. Snippets of multiple lines of code are supported through Rouge. Longer lines will automatically scroll horizontally when needed. You may also use code fencing (triple backticks) for rendering code. Inline code is available with the `<code>` element. Snippets of multiple lines of code are supported through Rouge. Longer lines will automatically scroll horizontally when needed. You may also use code fencing (triple backticks) for rendering code.
``` ```js
// Example can be run directly in your JavaScript console // Example can be run directly in your JavaScript console
// Create a function that takes two arguments and returns the sum of those arguments // Create a function that takes two arguments and returns the sum of those arguments

View File

@ -166,7 +166,7 @@ In the next and final section to this guide, well import all of Bootstraps
*You can also import our stylesheets individually if you want. [Read our Sass import docs]([[docsref:/customize/sass#importing]]) for details.* *You can also import our stylesheets individually if you want. [Read our Sass import docs]([[docsref:/customize/sass#importing]]) for details.*
3. **Next we load the CSS and import Bootstraps JavaScript.** Add the following to `src/js/main.js` to load the CSS and import all of Bootstraps JS. Popper will be imported automatically through Bootstrap. 2. **Next we load the CSS and import Bootstraps JavaScript.** Add the following to `src/js/main.js` to load the CSS and import all of Bootstraps JS. Popper will be imported automatically through Bootstrap.
```js ```js
// Import our custom CSS // Import our custom CSS
@ -187,7 +187,7 @@ In the next and final section to this guide, well import all of Bootstraps
*[Read our JavaScript docs]([[docsref:/getting-started/javascript/]]) for more information on how to use Bootstraps plugins.* *[Read our JavaScript docs]([[docsref:/getting-started/javascript/]]) for more information on how to use Bootstraps plugins.*
4. **And youre done! 🎉** With Bootstraps source Sass and JS fully loaded, your local development server should now look like this: 3. **And youre done! 🎉** With Bootstraps source Sass and JS fully loaded, your local development server should now look like this:
<img class="img-fluid" src="/docs/[[config:docs_version]]/assets/img/guides/vite-dev-server-bootstrap.png" alt="Vite dev server running with Bootstrap" /> <img class="img-fluid" src="/docs/[[config:docs_version]]/assets/img/guides/vite-dev-server-bootstrap.png" alt="Vite dev server running with Bootstrap" />

View File

@ -217,7 +217,6 @@ There are also responsive `.order-first` and `.order-last` classes that change t
</div> </div>
</div>`} /> </div>`} />
If you need more `.order-*` classes, you can add new ones by modifying our `$utilities` Sass map. [Read our Sass maps and loops docs]([[docsref:/customize/sass#maps-and-loops]]) or [our Modify utilities docs]([[docsref:/utilities/api#modify-utilities]]) for details. If you need more `.order-*` classes, you can add new ones by modifying our `$utilities` Sass map. [Read our Sass maps and loops docs]([[docsref:/customize/sass#maps-and-loops]]) or [our Modify utilities docs]([[docsref:/utilities/api#modify-utilities]]) for details.
```scss ```scss