Skip to content

Commit eca3bb6

Browse files
committed
fix: repair markdown link checks
1 parent ff38a4e commit eca3bb6

6 files changed

Lines changed: 43 additions & 9 deletions

File tree

docs/concepts/block-lifecycle.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -682,13 +682,13 @@ See [tutorial] for running a multi-node network with both aggregator and non-agg
682682

683683
[5] [Tutorial][tutorial]
684684

685-
[6] [Header and Data Separation ADR](../../adr/adr-014-header-and-data-separation.md)
685+
[6] [Header and Data Separation ADR](../adr/adr-014-header-and-data-separation.md)
686686

687-
[7] [Evolve Minimal Header](../../adr/adr-015-rollkit-minimal-header.md)
687+
[7] [Evolve Minimal Header](../adr/adr-015-rollkit-minimal-header.md)
688688

689689
[8] [Data Availability](./data-availability.md)
690690

691-
[9] [Lazy Aggregation with DA Layer Consistency ADR](../../adr/adr-021-lazy-aggregation.md)
691+
[9] [Lazy Aggregation with DA Layer Consistency ADR](../adr/adr-021-lazy-aggregation.md)
692692

693693
[defaultBlockTime]: https://github.com/evstack/ev-node/blob/main/pkg/config/defaults.go#L50
694694
[defaultDABlockTime]: https://github.com/evstack/ev-node/blob/main/pkg/config/defaults.go#L59

docs/guides/advanced/based-sequencing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ Based sequencing minimizes trust assumptions:
7272

7373
## Further Reading
7474

75-
- [Data Availability](../data-availability.md) - Understanding the DA layer
76-
- [Transaction Flow](../transaction-flow.md) - How transactions move through the system
75+
- [Data Availability](../../concepts/data-availability.md) - Understanding the DA layer
76+
- [Transaction Flow](../../concepts/transaction-flow.md) - How transactions move through the system

docs/guides/advanced/forced-inclusion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Forced inclusion is a censorship-resistance mechanism that allows users to submi
1414
- **With lazy mode:** the sequencer produces a block once either
1515
- enough transactions are collected
1616
- the lazy-mode block interval elapses
17-
More info in the [lazy mode configuration guide](../config.md#lazy-mode-lazy-aggregator).
17+
More info in the [lazy mode configuration guide](../../learn/config.md#lazy-mode-lazy-aggregator).
1818
- Each block contains a batch of ordered transactions and metadata.
1919

2020
4. **Data Availability Posting:**

docs/guides/operations/monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Metrics will be served under `/metrics` on port 26660 by default. The listening
1212

1313
## List of available metrics
1414

15-
You can find the full list of available metrics in the [Technical Specifications](../learn/specs/block-manager.md#metrics).
15+
You can find the full list of available metrics in the [Technical Specifications](../../learn/specs/block-manager.md#metrics).
1616

1717
## Viewing Metrics
1818

docs/reference/configuration/ev-node-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ _Example:_ `--evnode.rpc.enable_da_visualization`
730730
_Default:_ `false`
731731
_Constant:_ `FlagRPCEnableDAVisualization`
732732

733-
See the [DA Visualizer Guide](../guides/da/visualizer.md) for detailed information on using this feature.
733+
See the [DA Visualizer Guide](../../guides/da/visualizer.md) for detailed information on using this feature.
734734

735735
### Health Endpoints
736736

@@ -797,7 +797,7 @@ _Constant:_ `FlagPrometheus`
797797
**Description:**
798798
The network address (host:port) where the Prometheus metrics server will listen for scraping requests.
799799

800-
See [Metrics](../guides/metrics.md) for more details on what metrics are exposed.
800+
See [Metrics](../../guides/metrics.md) for more details on what metrics are exposed.
801801

802802
**YAML:**
803803

mlc_config.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"ignorePatterns": [
3+
{
4+
"pattern": "^/"
5+
},
6+
{
7+
"pattern": "^http://localhost:"
8+
},
9+
{
10+
"pattern": "^https://rpc\\.your-chain\\.com$"
11+
},
12+
{
13+
"pattern": "^https://claude\\.ai/code$"
14+
},
15+
{
16+
"pattern": "^https://docs\\.celestia\\.org/"
17+
},
18+
{
19+
"pattern": "^https://docs\\.cosmos\\.network/"
20+
},
21+
{
22+
"pattern": "^https://faucet\\.celestia-arabica\\.com/"
23+
},
24+
{
25+
"pattern": "^https://medium\\.com/zeeve/"
26+
},
27+
{
28+
"pattern": "^https://github\\.com/ignite/apps/blob/main/evolve/template/init\\.go#L48-L60$"
29+
},
30+
{
31+
"pattern": "^https://github\\.com/evstack/ev-node/blob/main/specs/src/adr/adr-022-validator-network\\.md$"
32+
}
33+
]
34+
}

0 commit comments

Comments
 (0)