Remove unneccessary test function

This commit is contained in:
Marcus Kammer 2023-09-01 10:40:52 +02:00
parent 339d114724
commit bce137ac57

View file

@ -113,10 +113,3 @@ Example:
collect (destructuring-bind (&key target name show content) item collect (destructuring-bind (&key target name show content) item
`(item (header ,target ,name ,show) `(item (header ,target ,name ,show)
(collapse ,id ,target ,show ,content))))))) (collapse ,id ,target ,show ,content)))))))
(defun show-accordion-example ()
"Show an generated accordion example"
(accordion (:id "accordionExample")
(:target "collapseOne" :name "Accordion Item #1" :show t :content "This is the first item's accordion body.")
(:target "collapseTwo" :name "Accordion Item #2" :content "This is the second item's accordion body.")
(:target "collapseThree" :name "Accordion Item #3" :content "This is the second item's accordion body.")))