Skip to content

Commit a777db3

Browse files
Repository-wide change: Find all instances of absolute URLs like <https://mintlify.com/docs/...> and create a plan to update them to root-relative links like guides/assistant`
1 parent 766bf5d commit a777db3

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

ai-ingestion.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ The [/llms.txt file](https://llmstxt.org) is an industry standard that helps gen
5353

5454
Every documentation site automatically hosts an `/llms.txt` file at the root that lists all available pages in your documentation. AI tools can use this file to understand your documentation structure and find relevant content to user prompts.
5555

56-
<PreviewButton href="https://mintlify.com/docs/llms.txt">Open llms.txt for this site</PreviewButton>
56+
<PreviewButton href="/llms.txt">Open llms.txt for this site</PreviewButton>
5757

5858
## /llms-full.txt
5959

6060
The `/llms-full.txt` file combines your entire documentation site into a single file as context for AI tools.
6161

6262
Every documentation site automatically hosts an `/llms-full.txt` file at the root.
6363

64-
<PreviewButton href="https://mintlify.com/docs/llms-full.txt">Open llms-full.txt for this site</PreviewButton>
64+
<PreviewButton href="/llms-full.txt">Open llms-full.txt for this site</PreviewButton>
6565

6666
## Generating Markdown versions of pages
6767

@@ -71,7 +71,7 @@ Markdown provides structured text that AI tools can process more efficiently tha
7171

7272
Add a `.md` to a page's URL to display a Markdown version of that page.
7373

74-
<PreviewButton href="https://mintlify.com/docs/quickstart.md">Open quickstart.md</PreviewButton>
74+
<PreviewButton href="/quickstart.md">Open quickstart.md</PreviewButton>
7575

7676
### Command \+ C shortcut
7777

api-playground/troubleshooting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ If your API pages aren't displaying correctly, check these common configuration
6969
requests, then all of these requests will fail. To fix this, configure your reverse proxy to
7070
allow `POST` requests to the `/api/request` path.
7171

72-
Alternatively, if your reverse proxy prevents you from accepting `POST` requests, you can configure Mintlify to send requests directly to your backend with the `api.playground.proxy` setting in the `docs.json`. See [Settings](settings#param-proxy) for more information. This will
72+
Alternatively, if your reverse proxy prevents you from accepting `POST` requests, you can configure Mintlify to send requests directly to your backend with the `api.playground.proxy` setting in the `docs.json`, as described [here](settings#api-configurations). This will
7373
likely require you to configure CORS on your server, as these requests will now come directly
7474
from your users' browsers.
7575
</Accordion>

components/cards.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Add a `horizontal` property to display cards horizontally.
3737

3838
Add an `img` property to display an image on the top of the card.
3939

40-
<Card title="Image Card" img="https://mintlify-assets.b-cdn.net/yosemite.jpg">
40+
<Card title="Image Card" img="/images/yosemite.jpg">
4141
Here is an example of a card with an image
4242
</Card>
4343

integrations/sdks/speakeasy.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Speakeasy
33
description: Automate your SDK usage snippets in the API playground
44
---
55

6-
You can integrate Speakeasy-generated code snippets from your SDKs directly into your Mintlify API reference documentation. SDK usage snippets are shown in the [interactive playground](https://mintlify.com/docs/api-playground/overview) of your Mintlify-powered documentation.
6+
You can integrate Speakeasy-generated code snippets from your SDKs directly into your Mintlify API reference documentation. SDK usage snippets are shown in the [interactive playground](/api-playground/overview) of your Mintlify-powered documentation.
77

88
## Speakeasy SDK Repository Changes
99

navigation.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ Anchors that strictly contain external links can be achieved using the `global`
202202
{
203203
"anchor": "Blog",
204204
"icon": "pencil",
205-
"href": "https://mintlify.com/blog"
205+
"href": "/blog"
206206
}
207207
]
208208
},
@@ -487,7 +487,7 @@ This way, you can create a very complex navigation structure that is easy to man
487487
"anchors": [
488488
{
489489
"anchor": "Anchor 1",
490-
"href": "https://mintlify.com/docs"
490+
"href": "/docs"
491491
}
492492
]
493493
},

settings.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This section contains the full reference for the `docs.json` file.
4141

4242
One of the following: `mint`, `maple`, `palm`, `willow`, `linden`, `almond`.
4343

44-
See [Themes](themes) for more information.
44+
See [Themes](/customization/themes) for more information.
4545

4646
</ResponseField>
4747

0 commit comments

Comments
 (0)