Skip to content

Commit 742c3df

Browse files
committed
fix broken referencelinks
1 parent 083ef5a commit 742c3df

24 files changed

+47
-47
lines changed

docs/docs/advanced/00-overview.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ Understand how different models can be assigned specific roles in your developme
3636

3737
Complete configuration reference and API documentation.
3838

39-
[View Reference →](./reference)
39+
[View Reference →](/reference)
4040

4141
## Troubleshooting
4242

4343
Solutions to common issues and debugging techniques.
4444

45-
[Get Help →](./troubleshooting)
45+
[Get Help →](/troubleshooting)
4646

4747
---
4848

docs/docs/advanced/context-integration/documentation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ For bulk documentation site adds or edits, we recommend editing your global conf
111111
</TabItem>
112112
</Tabs>
113113

114-
See [the config reference](../reference) for all documentation site configuration options.
114+
See [the config reference](/reference) for all documentation site configuration options.
115115

116116
Indexing will re-sync upon saving the configuration file.
117117

docs/docs/advanced/deep-dives/autocomplete.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The following settings can be configured for autocompletion in the IDE extension
9898

9999
### `config.json` Configuration
100100

101-
The `config.json` configuration format (deprecated) offers further configuration options through `tabAutocompleteOptions`. See the [JSON Reference](../reference.mdx#tabautocompleteoptions) for more details.
101+
The `config.json` configuration format (deprecated) offers further configuration options through `tabAutocompleteOptions`. See the [JSON Reference](/reference#tabautocompleteoptions) for more details.
102102

103103
## FAQs
104104

docs/docs/advanced/deep-dives/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ To open this `config.yaml`, you need to open the assistants dropdown in the top-
2626

2727
When editing this file, you can see the available options suggested as you type, or check the reference below. When you save a config file from the IDE, Continue will automatically refresh to take into account your changes. A config file is automatically created the first time you use Continue, and always automatically generated with default values if it doesn't exist.
2828

29-
See the full reference for `config.yaml` [here](../../advanced/reference).
29+
See the full reference for `config.yaml` [here](/reference).
3030

3131
## Deprecated configuration methods
3232

3333
:::info
3434
View the `config.json` migration guide [here](../yaml-migration.mdx)
3535
:::
3636

37-
- [`config.json`](../reference.mdx) - The original configuration format which is stored in a file at the same location as `config.yaml`
37+
- [`config.json`](/reference) - The original configuration format which is stored in a file at the same location as `config.yaml`
3838
- [`.continuerc.json`](#continuercjson) - Workspace-level configuration
3939
- [`config.ts`](#configts) - Advanced configuration (probably unnecessary) - a TypeScript file in your home directory that can be used to programmatically modify (_merged_) the `config.json` schema:
4040
- `~/.continue/config.ts` (MacOS / Linux)

docs/docs/advanced/deep-dives/development-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ You can also configure custom destinations for your data, including remote HTTP
1616

1717
For hub assistants, data destinations are configured in `data` blocks. Visit the hub to [explore example data blocks](https://hub.continue.dev/explore/data) or [create your own](https://hub.continue.dev/new?type=block&blockType=data).
1818

19-
See more details about adding `data` blocks to your configuration files in the [YAML specification](../../advanced/reference#data)
19+
See more details about adding `data` blocks to your configuration files in the [YAML specification](/reference#data)
2020

2121
When sending development data to your own HTTP endpoint, it will receive an event JSON blob at the given `schema` version. You can view event names, schema versions, and fields [here in the source code](https://github.com/continuedev/continue/tree/main/packages/config-yaml/src/schemas/data).

docs/docs/advanced/deep-dives/docs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ For bulk documentation site adds or edits, we recommend editing your global conf
111111
</TabItem>
112112
</Tabs>
113113

114-
See [the config reference](../reference) for all documentation site configuration options.
114+
See [the config reference](/reference) for all documentation site configuration options.
115115

116116
Indexing will re-sync upon saving the configuration file.
117117

docs/docs/advanced/deep-dives/rules.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ Continue includes a simple default system message for [Chat](../../features/chat
176176

177177
This can be viewed in the rules section of the toolbar (see above), or in the source code [here](https://github.com/continuedev/continue/blob/main/core/llm/constructMessages.ts#L4).
178178

179-
Advanced users can override this system message for a specific model if needed by using `chatOptions.baseSystemMessage`. See the [`config.yaml` reference](../../advanced/reference#models).
179+
Advanced users can override this system message for a specific model if needed by using `chatOptions.baseSystemMessage`. See the [`config.yaml` reference](/reference#models).
180180

181181
### `.continuerules`
182182

docs/docs/advanced/json-reference.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ keywords: [config, config_schema.json, json]
55
---
66

77
:::info
8-
We recently introduced a new configuration format, `config.yaml`, to replace `config.json`. See the `config.yaml` reference and migration guide [here](./reference.md).
8+
We recently introduced a new configuration format, `config.yaml`, to replace `config.json`. See the `config.yaml` reference and migration guide [here](/reference).
99
:::
1010

1111
Below are details for each property that can be set in `config.json`. The config schema code is found in [`extensions/vscode/config_schema.json`](https://github.com/continuedev/continue/blob/main/extensions/vscode/config_schema.json).
@@ -14,7 +14,7 @@ Below are details for each property that can be set in `config.json`. The config
1414

1515
### `models`
1616

17-
Your **chat** models are defined here, which are used for [Chat](./chat/how-to-use-it.md), [Edit](./edit/how-to-use-it.md) and [VS Code actions](./customize/deep-dives/vscode-actions.md).
17+
Your **chat** models are defined here, which are used for [Chat](/features/chat/how-it-works), [Edit](/features/edit/how-it-works) and [VS Code actions](/advanced/deep-dives/vscode-actions).
1818

1919
Each model has specific configuration options tailored to its provider and functionality, which can be seen as suggestions while editing the json.
2020

@@ -471,7 +471,7 @@ Several experimental config parameters are available, as described below:
471471
- `docstring`: Prompt for adding docstrings.
472472
- `fix`: Prompt for fixing code.
473473
- `optimize`: Prompt for optimizing code.
474-
- `modelContextProtocolServers`: See [Model Context Protocol](/customize/context-providers#model-context-protocol)
474+
- `modelContextProtocolServers`: See [Model Context Protocol](/customization/mcp-tools)
475475

476476
Example
477477

@@ -506,7 +506,7 @@ Example
506506

507507
### Fully deprecated settings
508508

509-
Some deprecated `config.json` settings are no longer stored in config and have been moved to be editable through the [User Settings Page](./customize/deep-dives/settings.md). If found in `config.json`, they will be auto-migrated to User Settings and removed from `config.json`.
509+
Some deprecated `config.json` settings are no longer stored in config and have been moved to be editable through the [User Settings Page](/advanced/deep-dives/settings). If found in `config.json`, they will be auto-migrated to User Settings and removed from `config.json`.
510510

511511
- `allowAnonymousTelemetry`: This value will be migrated to the safest merged value (`false` if either are `false`).
512512
- `promptPath`: This value will override during migration.
@@ -527,4 +527,4 @@ Some deprecated `config.json` settings are no longer stored in config and have b
527527
- `displayRawMarkdown`
528528
- `showChatScrollbar`
529529

530-
See [User Settings Page](./customize/deep-dives/settings.md) for more information about each option.
530+
See [User Settings Page](/advanced/deep-dives/settings) for more information about each option.

docs/docs/advanced/model-roles/00-intro.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Models in Continue can be configured to be used for various roles in the extensi
1818
- [`embed`](./embeddings.mdx): Used to generate embeddings used for vector search (@Codebase and @Docs context providers)
1919
- [`rerank`](./reranking.mdx): Used to rerank results from vector search
2020

21-
These roles can be specified for a `config.yaml` model block using `roles`. See the [YAML Specification](../../advanced/reference#models) for more details.
21+
These roles can be specified for a `config.yaml` model block using `roles`. See the [YAML Specification](/reference#models) for more details.
2222

2323
## Selecting model roles
2424

docs/docs/advanced/yaml-migration.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Continue's YAML configuration format provides more readable, maintainable, consi
1111
See also
1212

1313
- [Intro to YAML](https://yaml.org/)
14-
- [JSON Continue Config Reference](/advanced/reference)
15-
- [YAML Continue Config Reference](./reference.mdx)
14+
- [JSON Continue Config Reference](/reference)
15+
- [YAML Continue Config Reference](/reference)
1616

1717
## Create YAML file
1818

@@ -38,9 +38,9 @@ Add all model configurations in `config.json`, including models in `models`, `ta
3838
- `inlineEdit` -> e.g. `roles: [chat, edit]`
3939
- `applyCodeBlock` -> e.g. `roles: [chat, apply]`
4040

41-
Model-level `requestOptions` remain, with minor changes. See [YAML Continue Config Reference](./reference.mdx#models)
41+
Model-level `requestOptions` remain, with minor changes. See [YAML Continue Config Reference](/reference#models)
4242

43-
Model-level `completionOptions` are replaced by `defaultCompletionOptions`, with minor changes. See [YAML Continue Config Reference](./reference.mdx#models)
43+
Model-level `completionOptions` are replaced by `defaultCompletionOptions`, with minor changes. See [YAML Continue Config Reference](/reference#models)
4444

4545
<!-- TODO - ollama autodetect supported? -->
4646

@@ -330,7 +330,7 @@ mcpServers:
330330

331331
Some deprecated `config.json` settings are no longer stored in config and have been moved to be editable through the [User Settings Page](./deep-dives/settings.md) (Gear Icon). If found in `config.json`, they will be auto-migrated to User Settings and removed from `config.json`.
332332

333-
See the [JSON Config Reference](./reference#fully-deprecated-settings) for more information on fully deprecated options.
333+
See the [JSON Config Reference](/reference#fully-deprecated-settings) for more information on fully deprecated options.
334334

335335
The following top-level fields from `config.json` still work when using `config.json` but have been deprecated and don't have a YAML equivalent:
336336

@@ -355,4 +355,4 @@ The following top-level fields from `config.json` have been deprecated. Most UI-
355355

356356
## New Configuration options
357357

358-
The YAML configuration format offers new configuration options not available in the JSON format. See the [YAML Config Reference](./reference.mdx) for more information.
358+
The YAML configuration format offers new configuration options not available in the JSON format. See the [YAML Config Reference](/reference) for more information.

0 commit comments

Comments
 (0)