Skip to content

Commit 1866ccf

Browse files
committed
Fix broken links
1 parent ca0bde1 commit 1866ccf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/rules/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
<!--prettier-ignore-->
99
| Rule ID | Description | |
1010
|:--------|:------------|:---|
11-
| [@intlify/svelte/<wbr>no-raw-text](./no-raw-text.html) | disallow to string literal in template | :star: |
11+
| [@intlify/svelte/<wbr>no-raw-text](./no-raw-text.md) | disallow to string literal in template | :star: |

docs/started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module.export = {
4040
}
4141
```
4242

43-
See [the rule list](../rules/)
43+
See [the rule list](./rules/README.md)
4444

4545
### Running ESLint from command line
4646

scripts/update-docs-index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function toTableRow(rule: RuleInfo) {
1212
const mark = `${rule.recommended ? ':star:' : ''}${
1313
rule.fixable ? ':black_nib:' : ''
1414
}`
15-
const link = `[@intlify/svelte/<wbr>${rule.name}](./${rule.name}.html)`
15+
const link = `[@intlify/svelte/<wbr>${rule.name}](./${rule.name}.md)`
1616
const description = rule.description || '(no description)'
1717
return `| ${link} | ${description} | ${mark} |`
1818
}

0 commit comments

Comments
 (0)