Clean docs and add todo
This commit is contained in:
parent
1f4dea1ca7
commit
fc09761cc4
1 changed files with 2 additions and 2 deletions
|
@ -1,10 +1,10 @@
|
||||||
;; https://getbootstrap.com/docs/5.3/components/badge/
|
;; https://getbootstrap.com/docs/5.3/components/badge/
|
||||||
|
|
||||||
|
;; TODO Write a macro which defines every possible badge macro
|
||||||
|
|
||||||
(in-package :cl-sbt)
|
(in-package :cl-sbt)
|
||||||
|
|
||||||
(defmacro badge ((&key (classes nil)) &body body)
|
(defmacro badge ((&key (classes nil)) &body body)
|
||||||
"https://getbootstrap.com/docs/5.3/components/badge/
|
|
||||||
Documentation and examples for badges, our small count and labeling component."
|
|
||||||
`(spinneret:with-html
|
`(spinneret:with-html
|
||||||
(:span :class (concatenate 'string "badge " ,classes)
|
(:span :class (concatenate 'string "badge " ,classes)
|
||||||
,@body)))
|
,@body)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue