Skip to content

Instantly share code, notes, and snippets.

@adambard
Created March 27, 2012 17:42
Show Gist options
  • Save adambard/2218289 to your computer and use it in GitHub Desktop.
Save adambard/2218289 to your computer and use it in GitHub Desktop.
Quick pegdown demo
(ns pegdown-test
(:import org.pegdown.PegDownProcessor))
(defn markdown-to-html [md]
(let [pd (PegDownProcessor.)]
(.markdownToHtml pd md)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment