| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
| |
The impact score is deducted from the title.
Impact is max(known_titles).
|
| |
|
|
|
|
|
|
| |
Now we're limited to sorting table columns exactly by the displayed
content, but this is not always convenient.
If the `sort-value` attribute is present, prefer it to the element's
text content.
|
| |
|
|
|
| |
Instead of showing tons of extra information to the user, only show the
collapsed titles with counts and let user toggle the sections they need.
|
|
|
We use clumsy generate scripts that embed some static files.
Switch to the new go:embed thing (added in Go 1.16):
https://pkg.go.dev/embed
It's much nicer, does not require separate generate step
and does not lead to additional diffs in code reviews.
go:embed can only embed "files read from the package directory or subdirectories",
so we need to move these assets to the package dir.
|