First, I'd like to mention that I'm just starting out with Vibe.D and truly appreciate the work that has been done on it. It's wonderful having an approach to web development that is both compiled and straightforward to use.

I've been reading the source and documentation, and I can't seem to find a way to do the following:

# url.com/prefix/page/parameter1/parameter2
void getPage(string parameter1, string parameter2) {}

Now I know there's similar capability with the URLRouter, where I at least have access to those parameters via a request object:

router.get("/users/:user", &userInfo);
req.params["user"]

With the web interface generator, I can't (or don't know how to) specify parameters like :user. Does the functionality I'm looking for exist? How would I go about doing this?

Thanks for any help you can provide.