From 46261bdfa060168679d23eccdd45cba51240582c Mon Sep 17 00:00:00 2001 From: Edward Shen Date: Sun, 27 Sep 2020 21:47:35 -0400 Subject: [PATCH] update default config file --- bunbun.default.yaml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/bunbun.default.yaml b/bunbun.default.yaml index 0135cc8..6ff31cd 100644 --- a/bunbun.default.yaml +++ b/bunbun.default.yaml @@ -34,13 +34,20 @@ groups: routes: # /ls is the only page that comes with bunbun besides the homepage. This # page provides a full list of routes and their groups they're in. - ls: &ls "/ls" + ls: &ls + path: "/ls" + # You can specify a maximum number of arguments, which are string + # delimited strings. + max_args: 0 + # You can also specify a minimum amount of arguments. + # min_args: 1 help: - # Bunbun supports all standard YAML features, so things like YAML pointers - # and references are supported. - path: *ls + path: &ls "/ls" + max_args: 0 # Paths can be hidden from the listings page if desired. hidden: true + # Bunbun supports all standard YAML features, so things like YAML pointers + # and references are supported. list: *ls - # This is another group without a description