Skip to content

Commit bc0d640

Browse files
committed
fix(docs): Broken links
1 parent a88df09 commit bc0d640

File tree

13 files changed

+22
-22
lines changed

13 files changed

+22
-22
lines changed

docs/docs/configuration/index.md renamed to docs/docs/configuration/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,14 +114,14 @@ First, we provide some simple and commonly used implementations.
114114
You can use them simply and quickly through configuration.
115115

116116
For information on using the default transformers,
117-
refer to [Default Transformers](./default-transformers).
117+
refer to [Default Transformers](default-transformers.md).
118118

119119
> **Note**: The default `Transformer`s depend on the `annotation` and `runtime` we provide.
120120
> Make sure you include them before using it.
121121
122122
## Complete Configuration Example
123123

124-
Here's a complete example showing various configuration options:
124+
Heres a complete example showing various configuration options:
125125

126126
```kotlin
127127
suspendTransformPlugin {

docs/docs/configuration/custom-transformers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,4 +442,4 @@ addCopyAnnotationExclude {
442442
<Badge type="secondary">Version 0.13.0</Badge>
443443

444444
For configuration of `markName` in custom annotations,
445-
refer to [Mark Name](../features/mark-name#customize).
445+
refer to [Mark Name](../features/mark-name.md#customize).

docs/docs/configuration/default-transformers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ val fooBlocking: T
118118
119119
##### markName {#jvmblocking-markname}
120120

121-
Refer to [Mark Name](../features/mark-name).
121+
Refer to [Mark Name](../features/mark-name.md).
122122

123123

124124
### JVM Async Transformer
@@ -224,7 +224,7 @@ val fooAsync: CompletableFuture<out T>
224224
225225
##### markName {#jvmasync-markname}
226226

227-
Refer to [Mark Name](../features/mark-name).
227+
Refer to [Mark Name](../features/mark-name.md).
228228

229229
## JavaScript Transformers
230230

@@ -330,7 +330,7 @@ val fooAsync: Promise<T>
330330
331331
##### markName {#jspromise-markname}
332332

333-
Refer to [Mark Name](../features/mark-name).
333+
Refer to [Mark Name](../features/mark-name.md).
334334

335335
## Convenience Functions
336336

docs/docs/features/mark-name.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class Foo {
9696
In custom annotations, you can configure `markName`.
9797

9898
> For basic information about custom annotations (and transformers),
99-
> refer to [Custom Transformers](../configuration/custom-transformers).
99+
> refer to [Custom Transformers](../configuration/custom-transformers.md).
100100
101101
:::warning
102102
TODO

docs/docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ First, enable the default configuration by configuring the Gradle plugin.
1616

1717
:::note
1818

19-
For more information on configuration, refer to [Configuration](./configuration).
19+
For more information on configuration, refer to [Configuration](./configuration/configuration.md).
2020

2121
:::
2222

docs/docs/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ If the version is less than or equal to `0.9.0`, you can refer to this compariso
4747

4848
**build.gradle.kts**
4949

50-
<GradlePluginDSL />
50+
<GradlePluginDSL></GradlePluginDSL>
5151

5252
</TabItem>
5353
<TabItem value="legacy-plugin-application" label="Legacy Plugin Application">
5454

5555
**build.gradle.kts**
5656

57-
<GradlePluginLegacy />
57+
<GradlePluginLegacy></GradlePluginLegacy>
5858

5959
</TabItem>
6060
</Tabs>
@@ -69,7 +69,7 @@ suspendTransformPlugin {
6969
## Dependencies
7070

7171
Plugins may automatically introduce some dependencies.
72-
For more information on this topic, please refer to [Configuration - Include Dependencies](./configuration#include-dependencies).
72+
For more information on this topic, please refer to [Configuration - Include Dependencies](./configuration/configuration.md#include-dependencies).
7373

7474
## Cautions
7575
### Gradle JVM

docs/docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ const config: Config = {
122122
items: [
123123
{
124124
label: 'Documentation',
125-
to: '/docs/overview',
125+
to: '/docs/',
126126
},
127127
],
128128
},

docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/configuration/index.md renamed to docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/configuration/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ suspendTransformPlugin {
113113
您可以通过配置简单快速地使用它们。
114114

115115
有关使用默认转换器的信息,
116-
请参考 [默认转换器](./default-transformers)
116+
请参考 [默认转换器](./default-transformers.md)
117117

118118
> **注意**:默认的 `Transformer` 依赖于我们提供的 `annotation``runtime`
119119
> 在使用之前请确保您包含了它们。

docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/configuration/custom-transformers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,4 +441,4 @@ addCopyAnnotationExclude {
441441
<Badge type="secondary">版本 0.13.0</Badge>
442442

443443
有关自定义注解中 `markName` 的配置,
444-
请参考 [MarkName](../features/mark-name#customize)
444+
请参考 [MarkName](../features/mark-name.md#customize)

docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/configuration/default-transformers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ val fooBlocking: T
117117
118118
##### markName {#jvmblocking-markname}
119119

120-
参考 [MarkName](../features/mark-name)
120+
参考 [MarkName](../features/mark-name.md)
121121

122122

123123
### JVM 异步转换器
@@ -223,7 +223,7 @@ val fooAsync: CompletableFuture<out T>
223223
224224
##### markName {#jvmasync-markname}
225225

226-
参考 [MarkName](../features/mark-name)
226+
参考 [MarkName](../features/mark-name.md)
227227

228228
## JavaScript 转换器
229229

@@ -329,7 +329,7 @@ val fooAsync: Promise<T>
329329
330330
##### markName {#jspromise-markname}
331331

332-
参考 [MarkName](../features/mark-name)
332+
参考 [MarkName](../features/mark-name.md)
333333

334334
## 便利函数
335335

0 commit comments

Comments
 (0)