Skip to content

Commit 0067f06

Browse files
docs: correct local relative links (#6132)
* docs: correct local relative links * ci: apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent c06811a commit 0067f06

40 files changed

+178
-185
lines changed

docs/api/core/cell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Cell APIs
33
---
44

5-
These are **core** options and API properties for all cells. More options and API properties are available for other [table features](../../../guide/features.md).
5+
These are **core** options and API properties for all cells. More options and API properties are available for other [table features](../../guide/features.md).
66

77
## Cell API
88

docs/api/core/column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Column APIs
33
---
44

5-
These are **core** options and API properties for all columns. More options and API properties are available for other [table features](../../../guide/features.md).
5+
These are **core** options and API properties for all columns. More options and API properties are available for other [table features](../../guide/features.md).
66

77
## Column API
88

docs/api/core/header-group.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: HeaderGroup APIs
33
---
44

5-
These are **core** options and API properties for all header groups. More options and API properties may be available for other [table features](../../../guide/features.md).
5+
These are **core** options and API properties for all header groups. More options and API properties may be available for other [table features](../../guide/features.md).
66

77
## Header Group API
88

@@ -30,4 +30,4 @@ The depth of the header group, zero-indexed based.
3030
type headers = Header<TData>[]
3131
```
3232
33-
An array of [Header](../header.md) objects that belong to this header group
33+
An array of [Header](./header.md) objects that belong to this header group

docs/api/core/header.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Header APIs
33
---
44

5-
These are **core** options and API properties for all headers. More options and API properties may be available for other [table features](../../../guide/features.md).
5+
These are **core** options and API properties for all headers. More options and API properties may be available for other [table features](../../guide/features.md).
66

77
## Header API
88

@@ -38,15 +38,15 @@ The depth of the header, zero-indexed based.
3838
column: Column<TData>
3939
```
4040

41-
The header's associated [Column](../column.md) object
41+
The header's associated [Column](./column.md) object
4242

4343
### `headerGroup`
4444

4545
```tsx
4646
headerGroup: HeaderGroup<TData>
4747
```
4848

49-
The header's associated [HeaderGroup](../header-group.md) object
49+
The header's associated [HeaderGroup](./header-group.md) object
5050

5151
### `subHeaders`
5252

docs/api/core/row.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Row APIs
33
---
44

5-
These are **core** options and API properties for all rows. More options and API properties are available for other [table features](../../../guide/features.md).
5+
These are **core** options and API properties for all rows. More options and API properties are available for other [table features](../../guide/features.md).
66

77
## Row API
88

@@ -120,4 +120,4 @@ An array of the original subRows as returned by the `options.getSubRows` option.
120120
type getAllCells = () => Cell<TData>[]
121121
```
122122
123-
Returns all of the [Cells](../cell.md) for the row.
123+
Returns all of the [Cells](./cell.md) for the row.

docs/api/core/table.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ These functions are used to create a table. Which one you use depends on which f
1414
1515
## Options
1616
17-
These are **core** options and API properties for the table. More options and API properties are available for other [table features](../../../guide/features.md).
17+
These are **core** options and API properties for the table. More options and API properties are available for other [table features](../../guide/features.md).
1818
1919
### `data`
2020
@@ -34,7 +34,7 @@ When the `data` option changes reference (compared via `Object.is`), the table w
3434
type columns = ColumnDef<TData>[]
3535
```
3636
37-
The array of column defs to use for the table. See the [Column Def Guide](../../../guide/column-defs.md) for more information on creating column definitions.
37+
The array of column defs to use for the table. See the [Column Def Guide](../../guide/column-defs.md) for more information on creating column definitions.
3838
3939
### `defaultColumn`
4040

docs/api/features/filters.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ id: filters
77

88
The Filtering API docs are now split into multiple API doc pages:
99

10-
- [Column Faceting](../../../guide/column-faceting.md)
11-
- [Global Faceting](../../../guide/global-faceting.md)
12-
- [Column Filtering](../../../guide/column-filtering.md)
13-
- [Global Filtering](../../../guide/global-filtering.md)
10+
- [Column Faceting](../../guide/column-faceting.md)
11+
- [Global Faceting](../../guide/global-faceting.md)
12+
- [Column Filtering](../../guide/column-filtering.md)
13+
- [Global Filtering](../../guide/global-filtering.md)

docs/api/features/global-filtering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface GlobalFilterTableState {
2525

2626
## Filter Functions
2727

28-
You can use the same filter functions that are available for column filtering for global filtering. See the [Column Filtering](../../../guide/column-filtering.md) to learn more about filter functions.
28+
You can use the same filter functions that are available for column filtering for global filtering. See the [Column Filtering](../../guide/column-filtering.md) to learn more about filter functions.
2929

3030
#### Using Filter Functions
3131

docs/api/features/pinning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ id: pinning
77

88
The pinning apis are now split into multiple api pages:
99

10-
- [Column Pinning](../../../guide/column-pinning.md)
11-
- [Row Pinning](../../../guide/row-pinning.md)
10+
- [Column Pinning](../../guide/column-pinning.md)
11+
- [Row Pinning](../../guide/row-pinning.md)

docs/api/features/row-selection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export type RowSelectionTableState = {
1515
}
1616
```
1717
18-
By default, the row selection state uses the index of each row as the row identifiers. Row selection state can instead be tracked with a custom unique row id by passing in a custom [getRowId](../../core/table.md#getrowid) function to the the table.
18+
By default, the row selection state uses the index of each row as the row identifiers. Row selection state can instead be tracked with a custom unique row id by passing in a custom [getRowId](../core/table.md#getrowid) function to the the table.
1919
2020
## Table Options
2121

0 commit comments

Comments
 (0)