Liking cljdoc? Tell your friends :D

com.zimpler.routedocs.core


ANY+cljmacro

(ANY+ path args doc & body)
source

context+cljmacro

(context+ path args doc & routes)
source

DELETE+cljmacro

(DELETE+ path args doc & body)
source

GET+cljmacro

(GET+ path args doc & body)
source

HEAD+cljmacro

(HEAD+ path args doc & body)
source

OPTIONS+cljmacro

(OPTIONS+ path args doc & body)
source

PATCH+cljmacro

(PATCH+ path args doc & body)
source

POST+cljmacro

(POST+ path args doc & body)
source

PUT+cljmacro

(PUT+ path args doc & body)
source

reset-routedocs!cljmacro

(reset-routedocs!)

Must be inserted at beginning of file containing main route macros. If not inserted, then an error message will be written to stderr, and an exception thrown for every call to one of the <route>+ macros.

Must be inserted at beginning of file containing main route macros.
If not inserted, then an error message will be written to stderr,
and an exception thrown for every call to one of the <route>+ macros.
sourceraw docstring

wrap-routedocsclj

(wrap-routedocs handler & {:keys [path] :or {path "/routedocs"} :as ops})

Standard ring middleware which serves routedocs as Markdown or HTML at ':path' ':path' default to '/routedocs' Examples: (wrap-routedocs) (wrap-routedocs :path "/some/path/for/docs")

Standard ring middleware which serves routedocs as Markdown or HTML at ':path'
':path' default to '/routedocs'
Examples:  (wrap-routedocs)  (wrap-routedocs :path "/some/path/for/docs")
sourceraw docstring

write-routedocs!cljmacro

(write-routedocs! file)

Writes your routedocs as Markdown to the specified file. 'file' maybe a String or java.io.File. Must be inserted at end of file containing main route macros. (If not inserted, then no docs are written to file.)

Writes your routedocs as Markdown to the specified file.
'file' maybe a String or java.io.File.
Must be inserted at end of file containing main route macros.
(If not inserted, then no docs are written to file.)
sourceraw docstring

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

× close