-
+
+
No settings available.
+
-
-
- {{ child.key }}
-
-
+
-
+
+
+
+ {{ child.key }}
+
+
+
+
+
diff --git a/docs/configuration.md b/docs/configuration.md
index 5da697a7e0..4814728fd0 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -93,7 +93,7 @@ Different configuration sections merge in different ways:
# Result: experimental = true, jobs = 4
```
-:::tip
+::: tip
Run `mise config` to see what files mise has loaded in order of precedence.
:::
diff --git a/docs/dev-tools/backends/github.md b/docs/dev-tools/backends/github.md
index a5e6dddb25..c922ad3f65 100644
--- a/docs/dev-tools/backends/github.md
+++ b/docs/dev-tools/backends/github.md
@@ -43,7 +43,9 @@ For most tools, you can simply install without specifying patterns:
mise install github:user/repo
```
-> **Note:** The autodetection logic is implemented in [`src/backend/asset_detector.rs`](https://github.com/jdx/mise/blob/main/src/backend/asset_detector.rs), which is shared by both the GitHub and GitLab backends.
+::: tip
+The autodetection logic is implemented in [`src/backend/asset_detector.rs`](https://github.com/jdx/mise/blob/main/src/backend/asset_detector.rs), which is shared by both the GitHub and GitLab backends.
+:::
### `asset_pattern`
@@ -131,7 +133,9 @@ Number of directory components to strip when extracting archives:
"github:cli/cli" = { version = "latest", strip_components = 1 }
```
-**Auto-detection:** If `strip_components` is not explicitly set, mise will automatically detect when to apply `strip_components = 1`. This happens when the extracted archive contains exactly one directory at the root level and no files. This is common with tools like ripgrep that package their binaries in a versioned directory (e.g., `ripgrep-14.1.0-x86_64-unknown-linux-musl/rg`). The auto-detection ensures the binary is placed directly in the install path where mise expects it.
+::: info
+If `strip_components` is not explicitly set, mise will automatically detect when to apply `strip_components = 1`. This happens when the extracted archive contains exactly one directory at the root level and no files. This is common with tools like ripgrep that package their binaries in a versioned directory (e.g., `ripgrep-14.1.0-x86_64-unknown-linux-musl/rg`). The auto-detection ensures the binary is placed directly in the install path where mise expects it.
+:::
### `bin_path`
@@ -156,10 +160,7 @@ For GitHub Enterprise or self-hosted GitHub instances, specify the API URL:
```toml
[tools]
-"github:myorg/mytool" = {
- version = "latest",
- api_url = "https://github.mycompany.com/api/v3"
-}
+"github:myorg/mytool" = { version = "latest", api_url = "https://github.mycompany.com/api/v3" }
```
## Self-hosted GitHub
@@ -181,11 +182,3 @@ export MISE_GITHUB_ENTERPRISE_TOKEN="your-token"
import Settings from '/components/settings.vue';