summaryrefslogtreecommitdiff
path: root/src/string_utils.rs
Commit message (Collapse)AuthorAge
* Collapse consecutive hyphens in slugsBen Bridle5 days
| | | | | | | Previously, a heading or page called something like 'Name - subtitle' would become the slug 'name---subtitle' because the hyphen is stuck between spaces which also become hyphens. This looks silly. The new function will generate the slug 'name-subtitle' instead.
* Big rewriteBen Bridle14 days
| | | | | | | | | | | A quick list of everything that's changed: - links to a duplicate heading beneath the same level 1 heading now work - rss feed generation using a .feed file - customisation of the html template using the html.template key - option to use symlinks instead of copying static files - fixed incorrect resolution of internal links - simplified different name forms with the Name type - allow linking to a redirect
* Move string utilities to separate moduleBen Bridle2026-02-06
This makes things tidier.