mirror of
https://github.com/logos-co/logos-lips.git
synced 2026-08-27 08:11:12 +00:00
## Summary Move/mirror blockchain specs from Notion into GitHub/mdBook ## Changes - Imported missing blockchain raw/deprecated specs, appendices, images, PDFs, notebooks, and local assets. - Replaced remaining Notion-hosted resources/links with local GitHub files where applicable. - Renamed/updated Nomos references to Logos Blockchain terminology. - Deprecated DA-related specs and other specs that are deprecated in Notion. - Fixed Markdown/mdBook/GitHub rendering issues for math, tables, code blocks, captions, Mermaid/SVG diagrams, local links, and navigation. - Added/updated rendering validation so future broken math, raw Notion links, and migration artifacts are caught by lint. - Cleaned markdownlint/remark issues across affected specs. ## Validation - `make lint` - `mdbook build`
24 lines
588 B
Makefile
24 lines
588 B
Makefile
.PHONY: install lint build serve
|
|
|
|
MDBOOK_VERSION ?= 0.4.52
|
|
|
|
install:
|
|
cargo install mdbook --version $(MDBOOK_VERSION)
|
|
|
|
serve:
|
|
python scripts/run_runtime_generators.py
|
|
mdbook serve -p 3000 -n 0.0.0.0
|
|
|
|
build:
|
|
python scripts/run_runtime_generators.py
|
|
mdbook build
|
|
|
|
lint:
|
|
python scripts/gen_rfc_index.py
|
|
python scripts/gen_summary.py
|
|
python scripts/validate_metadata.py --check
|
|
python scripts/validate_generated_outputs.py
|
|
python scripts/validate_rendering.py --strict-github-inline-math
|
|
npx markdownlint-cli2@0.12.1 "docs/**/*.md" --config .markdownlint.yaml
|
|
npm run lint:remark
|