From b9575318a93897842cdf3b1d4006fe5fa38e3740 Mon Sep 17 00:00:00 2001 From: Colin Jones Date: Sat, 24 Sep 2011 12:45:43 -0500 Subject: [PATCH] Use syntax highlighting for README --- README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 25eada5..269ccd7 100644 --- a/README.md +++ b/README.md @@ -84,14 +84,18 @@ run: Here are some interesting commands you might try, once you're in a running REPL: - (find-doc "vec") - (find-doc #"vec$") - (doc vec) +```clojure +(find-doc "vec") +(find-doc #"vec$") +(doc vec) +``` And if those still don't make sense: - (doc doc) - (doc find-doc) +```clojure +(doc doc) +(doc find-doc) +``` will show you what those commands mean.