Fix docstring
This commit is contained in:
parent
c2edf2f2a2
commit
e221d0dae5
1 changed files with 4 additions and 4 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue