(newline-above? lines line index)
Determines whether there's a need for an empty new line
above the line
at the current index
. In the case of a
code block, which starts with three backticks (```), if there's
no empty newline above, we need to create one, and so this
function must then return true
.
Determines whether there's a need for an empty new line above the `line` at the current `index`. In the case of a code block, which starts with three backticks (```), if there's no empty newline above, we need to create one, and so this function must then return `true`.
(newline-below? lines line index)
Determines whether there's a need for an empty new line
below the line
at the current index
. In the case of a
code block, which ends with three backticks (```), if there's
no empty newline above, we need to create one, and so this
function must then return true
.
Determines whether there's a need for an empty new line below the `line` at the current `index`. In the case of a code block, which ends with three backticks (```), if there's no empty newline above, we need to create one, and so this function must then return `true`.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close