new
This commit is contained in:
parent
b3aa59243a
commit
28b2929f7d
2 changed files with 10 additions and 3 deletions
|
|
@ -16,8 +16,11 @@ access. Do NOT parse the RST source under `src/` directly.
|
||||||
|
|
||||||
If `dist/markdown/` is not available locally, the specification
|
If `dist/markdown/` is not available locally, the specification
|
||||||
(including this `AGENTS.md`) can be retrieved from
|
(including this `AGENTS.md`) can be retrieved from
|
||||||
`specs.code.tiararodney.com`, which provides HTML indexes that can be
|
`specs.code.tiararodney.com`:
|
||||||
traversed to locate the applicable markdown files.
|
|
||||||
|
- 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
|
## What This Spec Defines
|
||||||
|
|
||||||
|
|
|
||||||
6
Makefile
6
Makefile
|
|
@ -1,6 +1,6 @@
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
|
|
||||||
all: build/html build/markdown
|
all: build/html dist/markdown publish
|
||||||
|
|
||||||
build/html:
|
build/html:
|
||||||
sphinx-build -b html src build/html
|
sphinx-build -b html src build/html
|
||||||
|
|
@ -8,5 +8,9 @@ build/html:
|
||||||
dist/markdown:
|
dist/markdown:
|
||||||
sphinx-build -M markdown src dist
|
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:
|
clean:
|
||||||
rm -rv build
|
rm -rv build
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue