diff --git a/README.md b/README.md index 272a4ac..73236cb 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,28 @@ # Table of Contents -1. [Cl-Sbt](#org6b7b2d5) - 1. [Usage](#org73362c7) - 1. [Defining a Card](#org5fffccc) - 2. [Defining a Dropdown](#orgfcfa498) - 2. [Installation](#org1a9e1bc) - 3. [Author](#orgfe8f77a) - 4. [Copyright](#orga9219ed) +1. [Cl-Sbt](#orgf83023c) + 1. [Usage](#org78733f2) + 1. [Defining a Card](#org18999ea) + 2. [Defining a Dropdown](#orgc4ef212) + 2. [Installation](#org656f0ca) + 3. [Author](#org1683a96) + 4. [Copyright](#orgd092a88) - + # Cl-Sbt Common Lisp Spinneret Bootstrap Templates - + ## Usage - + ### Defining a Card @@ -35,19 +35,19 @@ The following code demonstrates how to define a card using the card macro. (cl-sbt-card:text "Some quick example text to build on the card title and make up the bulk of the card's content.") (cl-sbt-card:link (:href "#") "Card link"))) -
-
-
Card title
-
Card subtitle
-

Some quick example text to build on the card title and make up - the bulk of the card's content. - Card link -

-
+
+
+
Card title
+
Card subtitle
+

Some quick example text to build on the card title and make up + the bulk of the card's content. + Card link +

+
- + ### Defining a Dropdown @@ -60,19 +60,19 @@ macro. (cl-sbt-dropdown:item "Another action") (cl-sbt-dropdown:item "Something else here"))) - + - + ## Installation @@ -81,14 +81,14 @@ macro. (ql:quickload :cl-sbt) - + ## Author - Marcus Kammer (marcus.kammer@mailbox.org) - + ## Copyright diff --git a/README.org b/README.org index d41e783..ba73fba 100644 --- a/README.org +++ b/README.org @@ -8,7 +8,7 @@ Common Lisp Spinneret Bootstrap Templates The following code demonstrates how to define a card using the card macro. -#+begin_src lisp :results output html :exports both +#+begin_src lisp :results output :exports both (cl-sbt-card:card (cl-sbt-card:body (cl-sbt-card:title "Card title") @@ -36,7 +36,7 @@ The following code demonstrates how to define a card using the card macro. The following code demonstrates how to define a dropdown using the dropdown macro. -#+begin_src lisp :results output html :exports both +#+begin_src lisp :results output :exports both (cl-sbt-dropdown:dropdown (:title "Dropdown button") (cl-sbt-dropdown:menu (cl-sbt-dropdown:item "Action") @@ -45,7 +45,7 @@ macro. #+end_src #+RESULTS: -#+begin_export html +#+begin_example -#+end_export +#+end_example ** Installation