This commit is contained in:
Tiara Rodney 2026-02-10 20:46:51 +01:00
parent b3aa59243a
commit 28b2929f7d
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
2 changed files with 10 additions and 3 deletions

View file

@ -16,8 +16,11 @@ access. Do NOT parse the RST source under `src/` directly.
If `dist/markdown/` is not available locally, the specification
(including this `AGENTS.md`) can be retrieved from
`specs.code.tiararodney.com`, which provides HTML indexes that can be
traversed to locate the applicable markdown files.
`specs.code.tiararodney.com`:
- Specification: `https://specs.code.tiararodney.com/mime-todo/markdown/README.md`
- Agent instructions: `https://specs.code.tiararodney.com/mime-todo/markdown/AGENTS.md`
- Index: `https://specs.code.tiararodney.com/mime-todo/markdown/`
## What This Spec Defines

View file

@ -1,6 +1,6 @@
.PHONY: clean
all: build/html build/markdown
all: build/html dist/markdown publish
build/html:
sphinx-build -b html src build/html
@ -8,5 +8,9 @@ build/html:
dist/markdown:
sphinx-build -M markdown src dist
publish:
rsync -rv dist/markdown build/html root@tiararodney.com:/root/webserver/srv/http/spec.tiararodney.com/mime-todo
clean:
rm -rv build