Liking cljdoc? Tell your friends :D
ClojureScript only.

dots.vscode.shell-quoting

Defines how an argument should be quoted if it contains spaces or unsupported characters.

Defines how an argument should be quoted if it contains
spaces or unsupported characters.
raw docstring

escapecljs

Character escaping should be used. This for example uses \ on bash and ` on PowerShell.

Character escaping should be used. This for example
uses \ on bash and ` on PowerShell.
sourceraw docstring

strongcljs

Strong string quoting should be used. This for example uses " for Windows cmd and ' for bash and PowerShell. Strong quoting treats arguments as literal strings. Under PowerShell echo 'The value is $(2 * 3)' will print The value is $(2 * 3)

Strong string quoting should be used. This for example
uses " for Windows cmd and ' for bash and PowerShell.
Strong quoting treats arguments as literal strings.
Under PowerShell echo 'The value is $(2 * 3)' will
print `The value is $(2 * 3)`
sourceraw docstring

weakcljs

Weak string quoting should be used. This for example uses " for Windows cmd, bash and PowerShell. Weak quoting still performs some kind of evaluation inside the quoted string. Under PowerShell echo "The value is $(2 * 3)" will print The value is 6

Weak string quoting should be used. This for example
uses " for Windows cmd, bash and PowerShell. Weak quoting
still performs some kind of evaluation inside the quoted
string.  Under PowerShell echo "The value is $(2 * 3)"
will print `The value is 6`
sourceraw docstring

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

× close