Liking cljdoc? Tell your friends :D

marge

Markdown generation for Clojure and ClojureScript.

Status

Build Status Clojars Project

Usage

(require '[marge.core :as marge])

Headings

(marge/markdown 
 [:h4 "My Heading"])

My Heading

Quotes

(marge/markdown
 [:blockquote "Something quote worthy!"])

Something quote worthy!

Strikethrough

(marge/markdown
 [:strikethrough "Done this!"])

~~Done this!~~

Strong

(marge/markdown
 [:strong "Done this!"])

Done this!

Emphasis

(marge/markdown
 [:em "Done this!"])

Done this!

Lists

(marge/markdown
 [:ol ["Item 1" "Item 2"]])
  1. Item 1
  2. Item 2
(marge/markdown
 [:ul ["Item 1" "Item 2"]])
  • Item 1
  • Item 2
(marge/markdown
 [:ol ["Item 1" 
       [:ul "Sub Item 1" "Sub Item 2"]
       "Item 2"]])
  1. Item 1
  • Sub Item 1
  • Sub Item 2
  1. Item 2
(marge/markdown
 [:ul [{:done? true :task "Item 1"} {:done? false :task "Item 2"}]])
  • [x] Item 1
  • [ ] Item 2

Links

(marge/markdown 
 [:link 
  {:text "I'm an inline-style link" 
   :title "Google Homepage"
   :url "https://www.google.com"}])

I'm an inline-style link

Anchors

Sometimes you might want to place an anchor that you link to later.

(marge/markdown 
 [:anchor "Anchor"])

Test Anchor Link

Horizontal Rule

(marge/markdown 
 [:hr])

Code

(marge/markdown 
 [:code
  {:clojure "(def data [1 2 3])"}])
(def data [1 2 3])

Tables

(markdown 
  [:table
   ["Product" 
    ["Coke" "Fanta" "Lilt"] 
    "Quantity" 
    ["100" "10000000" "1"]
    "Price"
    ["$70" "$7000000" "$2"]]])
ProductQuantityPrice
Coke100$70
Fanta10000000$7000000
Lilt1$2

Markdown in a table

(markdown 
  [:table
   ["Title" 
    ["link"]
    "Links" 
    [:link {:url "url" :text "text"}]]])
TitleLinks
linktext

Composition

(markdown 
 [:h1 "Header"
  :ol ["First item" "Second item"]
  :h2 "Header 2"])

Can you improve this documentation?Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close