Skip to content

Commit f60a62c

Browse files
committed
docs: fix markdownlint errors (MD040 missing code block languages, MD012 extra blank lines)
- Add 'text' language specifier to 25 fenced code blocks containing ASCII diagrams, log output, and formulas - Remove extra blank line in migration-from-cometbft.md - Fix non-descriptive link text in deployment.md
1 parent a07f7e0 commit f60a62c

19 files changed

Lines changed: 26 additions & 27 deletions

docs/concepts/data-availability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Evolve currently supports two DA modes:
3030

3131
## DA Flow
3232

33-
```
33+
```text
3434
Block Produced
3535
3636

docs/concepts/fee-systems.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Evolve chains have two layers of fees: execution fees (paid to process transacti
88

99
Uses EIP-1559 fee model:
1010

11-
```
11+
```text
1212
Transaction Fee = (Base Fee + Priority Fee) × Gas Used
1313
```
1414

@@ -38,7 +38,7 @@ See [Base Fee Redirect](/ev-reth/features/base-fee-redirect) for details.
3838

3939
Uses standard Cosmos SDK fee model:
4040

41-
```
41+
```text
4242
Transaction Fee = Gas Price × Gas Used
4343
```
4444

@@ -107,7 +107,7 @@ da:
107107
108108
## Fee Flow Diagram
109109
110-
```
110+
```text
111111
User Transaction
112112
113113
│ Pays: Gas Price × Gas

docs/concepts/finality.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Finality determines when a transaction is irreversible. Evolve has a multi-stage
44

55
## Finality Stages
66

7-
```
7+
```text
88
Transaction Submitted
99
1010

docs/concepts/sequencing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In traditional L1 blockchains, these functions are distributed across validators
1818

1919
The simplest approach is a single sequencer: one designated node that orders all transactions.
2020

21-
```
21+
```text
2222
User → Sequencer → Block → DA Layer
2323
```
2424

@@ -41,7 +41,7 @@ Most production rollups today use single sequencers because the performance bene
4141

4242
Based sequencing (also called "based rollups") delegates transaction ordering to the underlying DA layer. Instead of a dedicated sequencer, users submit transactions directly to the DA layer, and all rollup nodes independently derive the same ordering from DA blocks.
4343

44-
```
44+
```text
4545
User → DA Layer → All Nodes Derive Same Order
4646
```
4747

docs/ev-abci/integration-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Check for ev-abci flags:
7171

7272
Expected flags:
7373

74-
```
74+
```text
7575
--evnode.node.aggregator Run as block producer
7676
--evnode.da.address DA layer address
7777
--evnode.signer.passphrase Signer passphrase

docs/ev-abci/migration-from-cometbft.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,4 +269,3 @@ Verify that the node starts successfully:
269269
```
270270

271271
Your node is now running with `ev-abci` instead of CometBFT. The chain continues from the same state but with the new consensus engine.
272-

docs/ev-abci/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ev-abci provides:
1313

1414
## Architecture
1515

16-
```
16+
```text
1717
┌─────────────────────────────────────────┐
1818
│ Your Cosmos App │
1919
│ ┌─────────────────────────────────┐ │

docs/ev-reth/engine-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Configure both sides:
2222

2323
## Block Production Flow
2424

25-
```
25+
```text
2626
ev-node ev-reth
2727
│ │
2828
│ 1. engine_forkchoiceUpdatedV3 │

docs/ev-reth/features/base-fee-redirect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In your chainspec (`genesis.json`):
3232

3333
## How It Works
3434

35-
```
35+
```text
3636
Transaction Fee = Base Fee + Priority Fee
3737
3838
Standard Ethereum:

docs/ev-reth/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ev-reth extends reth with:
1212

1313
## Architecture
1414

15-
```
15+
```text
1616
┌─────────────────────────────────────────┐
1717
│ ev-node │
1818
│ (consensus + DA + P2P) │

0 commit comments

Comments
 (0)