diff --git a/src/breadcrumb.lisp b/src/breadcrumb.lisp index 69f3361..61aa5c4 100644 --- a/src/breadcrumb.lisp +++ b/src/breadcrumb.lisp @@ -7,13 +7,13 @@ (defmacro with-breadcrumb (&rest items) "Creates a Bootstrap breadcrumb navigation. -ITEMS: A list of (label . url) pairs. The last item is automatically set as active. +ITEMS: A list of \"label\" \"url\" pairs. The last item is automatically set as active. Example usage: (with-breadcrumb - (\"Home\" . \"/\") - (\"Library\" . \"/library\") - (\"Data\" . nil))" + \"Home\" \"/\" + \"Library\" \"/library\" + \"Data\" nil)" `(spinneret:with-html (:nav :class "container" :aria-label "breadcrumb"