From fc18e6363dcb0befca0088a66284b05979ee3036 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Tue, 9 Sep 2014 21:30:27 +0100 Subject: Create initial test and implementation --- src/microformats/core.clj | 6 ------ src/microformats/parser.clj | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) delete mode 100644 src/microformats/core.clj create mode 100644 src/microformats/parser.clj (limited to 'src') diff --git a/src/microformats/core.clj b/src/microformats/core.clj deleted file mode 100644 index 512e790..0000000 --- a/src/microformats/core.clj +++ /dev/null @@ -1,6 +0,0 @@ -(ns microformats.core) - -(defn foo - "I don't do a whole lot." - [x] - (println x "Hello, World!")) diff --git a/src/microformats/parser.clj b/src/microformats/parser.clj new file mode 100644 index 0000000..c741549 --- /dev/null +++ b/src/microformats/parser.clj @@ -0,0 +1,6 @@ +(ns microformats.parser) + +(defn parse + "Parse a HTML string with microformats" + [html] + {:items [] :rels {}}) -- cgit 1.4.1