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)
|
(defmacro with-breadcrumb (&rest items)
|
||||||
"Creates a Bootstrap breadcrumb navigation.
|
"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:
|
Example usage:
|
||||||
(with-breadcrumb
|
(with-breadcrumb
|
||||||
(\"Home\" . \"/\")
|
\"Home\" \"/\"
|
||||||
(\"Library\" . \"/library\")
|
\"Library\" \"/library\"
|
||||||
(\"Data\" . nil))"
|
\"Data\" nil)"
|
||||||
`(spinneret:with-html
|
`(spinneret:with-html
|
||||||
(:nav :class "container"
|
(:nav :class "container"
|
||||||
:aria-label "breadcrumb"
|
:aria-label "breadcrumb"
|
||||||
|
|
Loading…
Add table
Reference in a new issue