--- author: 4NK Team date: 2026-02-17 scope: v0/livre.md (Chapter 8) type: fix --- # Fix: Missing trailing pipe in Chapter 8 Markdown table (`v0/livre.md`) ## Problem In Chapter 8 of `v0/livre.md`, the last row of the final summary table was missing the trailing `|`, while the other rows used a consistent pipe-delimited Markdown table syntax. ## Impacts - Markdown table rendering can become inconsistent across renderers. - Divergence between `v0/chapitre8.md` (source) and Chapter 8 in `v0/livre.md` (compiled book) on formatting. ## Cause The last table row in `v0/livre.md` did not include the trailing pipe delimiter. ## Root cause Unidentified manual edit or transformation step introduced an inconsistent Markdown table row terminator in `v0/livre.md`. ## Fix applied Applied the correction **only** in `v0/livre.md` (Chapter 8): - `| Coût minimal d’effacement | \(E_{\min}\ge kT\ln 2\ \Delta b\) | logique irréversible | consensus (Landauer)` → `| Coût minimal d’effacement | \(E_{\min}\ge kT\ln 2\ \Delta b\) | logique irréversible | consensus (Landauer) |` ## Affected pages - `v0/livre.md` ## Deployment / regeneration considerations - If `v0/livre.md` is regenerated from `v0/chapitre*.md`, this fix can be overwritten. The generating pipeline should be checked if this formatting inconsistency reappears. ## Analysis / verification steps - Compare Chapter 8 tables between `v0/chapitre8.md` and the Chapter 8 slice in `v0/livre.md`. - Search for Markdown table rows missing terminal `|` when the same table uses terminal pipes elsewhere.