-
Notifications
You must be signed in to change notification settings - Fork 951
Closed
Labels
Description
- Set up a GitHub action to publish docs on GitHub Pages every release.
- Try to build docs anyway at every commit to spot breakage early.
- Remove (now redundant) handwritten API reference.
- Try to make
docs/README.md
shorter. Move information into JSDoc. Remove junk. Deduplicate. - Avoid putting example code directly into readme, since it's not typechecked there and can easily get outdated.
Prefer putting it indocs/examples/
and linking to it.
Or perhaps embed it with<iframe>
, Github escapes it, butmarked
used bytypedoc
doesn't 😈 - Make sure
docs/README.md
contains everything fromreadme.md
. - Remove
readme.md
, now inferior todocs/README.md
. - Move
docs/README.md
back to root and updateLine 19 in 1f7dee7
"readme": "docs/README.md",
KnorpelSenf