I'm using Startlight to create docs, and I love it so far, thanks for maintaining it!
I want to have source files using the following naming convention so they appear in the explorer in the same order as they appear on the docs themselves
thib@MacBook content % tree
.
├── config.ts
└── docs
├── deployment
│ ├── dependencies.md
│ └── provisioning.md
├── index.mdx
├── learning
│ ├── 10-ssh-and-fingerprints.md
│ ├── 15-ansible.md
│ ├── 20-containers.md
│ ├── 30-traefik.md
│ ├── 40-firewalld.md
│ ├── 50-systemd.md
│ └── 60-wireguard.md
└── overview
├── 10-what-is-it.md
└── 20-technical-overview.md
I'm currently using the slug frontmatter property to get rid of the xx- prefix, but I need to add the directory in the slug (e.g. learning/ssh-and-fingerprints).
Is it possible to keep autogenerating a slug but to strip the xx- prefix?
Alternatives considered: using the sidebar.order frontmatter property and stripping the xx- from the filenames themselves, but in this case the files explorer doesn't display the files in the same order as the docs