marginalia/project.clj
dm3 9725f6d2cb Fixed errors happening when parser encountered string or number literals
outside of forms.

.gitignore: added temporary file generated by `lein test`
project.clj: dependency on vimclojure
test/parse_test.clj: tests for situations causing errors pre-patch
src/marginalia/parser.clj: literal handling during code block merges
2011-07-25 01:31:49 +03:00

17 lines
689 B
Clojure

(defproject marginalia "0.6.0"
:description "lightweight literate programming for clojure -- inspired by [docco](http://jashkenas.github.com/docco/)"
:main marginalia.core
:dependencies
[[org.clojure/clojure "1.2.0"]
[org.clojure/clojure-contrib "1.2.0"]
[hiccup "0.3.0"]
[org.markdownj/markdownj "0.3.0-1.0.2b4"]]
:dev-dependencies
[[lein-clojars "0.6.0"]
[jline "0.9.94"]
;; lein vimclojure& #starts the nailgun server
[org.clojars.autre/lein-vimclojure "1.0.0"]
[swank-clojure "1.2.1"]]
;;Needed for testing Latex equation formatting. You must download
;;and install MathJax in you doc directory.
:marginalia {:javascript ["mathjax/MathJax.js"]})