(adjust-indent s spaces)adjusts indents of multiple lines
(adjust-indent "\n a\n b\n c" 2) => "\n a\n b\n c"
adjusts indents of multiple lines
(adjust-indent "\n a\n b\n c"
2)
=> "\n a\n b\n c"(basic-html-escape data)escape html tags for output
(basic-html-escape "<>") => "<>"
escape html tags for output (basic-html-escape "<>") => "<>"
(basic-html-unescape data)unescape html output for rendering
unescape html output for rendering
(join-string data)join string in the form of vector or string
(join-string "hello") => "hello"
(join-string ["hello" " " "world"]) => "hello world"
join string in the form of vector or string (join-string "hello") => "hello" (join-string ["hello" " " "world"]) => "hello world"
(markup data)creates html from markdown script
(markup "#title") => "<h1>title</h1>"
creates html from markdown script (markup "#title") => "<h1>title</h1>"
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |