]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Lint Markdown
authorMark Otto <markdotto@gmail.com>
Sun, 14 Dec 2025 22:38:37 +0000 (14:38 -0800)
committerMark Otto <markdotto@gmail.com>
Sun, 14 Dec 2025 22:38:37 +0000 (14:38 -0800)
site/src/content/docs/getting-started/approach.mdx
site/src/content/docs/guides/quickstart.mdx

index b7161bbec12652fbbc906e44305e6e827c84a0e2..9ceea05f348a04561e4e6d8242f05ef27f56adbf 100644 (file)
@@ -71,7 +71,7 @@ We use [Autoprefixer](https://github.com/postcss/autoprefixer) to handle intende
 
 ## Guiding principles
 
-Beyond what Bootstrap does, here's _why_ we do it—our philosophy for building on the web. At a high level, here's what guides our approach:
+Beyond what Bootstrap does, here's *why* we do it—our philosophy for building on the web. At a high level, here's what guides our approach:
 
 - Components should be responsive and mobile-first
 - Components should be built with a base class and extended via modifier classes
@@ -101,7 +101,7 @@ We use two `z-index` scales in Bootstrap—elements within a component and overl
 Some components in Bootstrap are built with overlapping elements to prevent double borders without modifying the `border` property. For example, button groups, input groups, and pagination. These components share a standard `z-index` scale of `0` through `3`, matching our expectations of highest user priority.
 
 - `0` is for default states (initial, not actually set)
-- `1` is for `:hover`, lowest because while it indicates user intent, nearly _anything_ can be hovered.
+- `1` is for `:hover`, lowest because while it indicates user intent, nearly *anything* can be hovered.
 - `2` is for `:active`/`.active`, second highest because they indicate state.
 - `3` is for `:focus`, highest because focused elements are in view and at the user’s attention.
 
index a5c06346d76c4b1e4672076252952d25b8071bfe..25bbfa199a8b0ba6505eac1712fe758d0bff61bf 100644 (file)
@@ -27,7 +27,7 @@ Get started using Bootstrap in seconds by including our production-ready CSS and
    </html>
    ```
 
-2. **Include Bootstrap’s CSS and JS.** Place the `<link>` tag in the `<head>` for our CSS, and the `<script>` tag for our JavaScript bundle (including Popper for positioning dropdowns, popovers, and tooltips) before the closing `</body>`. Learn more about our [CDN links](#cdn-links).
+2. **Include Bootstrap’s CSS and JS.** Place the `<link>` tag in the `<head>` for our CSS, and the `<script>` tag for our JavaScript bundle (including Popper for positioning dropdowns, popovers, and tooltips) before the closing `</body>`. Learn more about our [CDN links]([[docsref:/getting-started/install#cdn]]).
 
    ```html
    <!doctype html>