| Age | Commit message (Collapse) | Author |
|
The logic for the various titles on any given page is:
∃README
∃title block
<title> ⇒ title block
<header> <h1> ⇒ title block
TOC <h1> ⇒ "Index for {target}"
∄title block
<title> ⇒ "{target}" or "README"
<header> <h1> ⇒ ∅
TOC <h1> ⇒ "Index for {target}"
∄README
<title> ⇒ "Index for {target}"
<header> <h1> ⇒ "Index"
TOC <h1> ⇒ ∅
|
|
Likewise, use relative links so that things work when just browsing
files locally without a server.
Next: tweak or remove redundant titles.
|
|
With relative links, so that I can just view HTML files on my disk
without spawning a webserver.
|
|
|
|
Will be useful to avoid duplicating changes to Lua filters.
|
|
|
|
Will reduce friction to code things cleanly.
|