Package-level declarations

Functions

Link copied to clipboard
.capitalize string:{String} -> String

Capitalizes the first character of a string. Example: hello, world! ->Hello, world!

Link copied to clipboard
.concatenate a:{String}
with:{String}
if:{Boolean = true}
-> String

Concatenates two strings if a condition is met. Example: Hello, and World! ->Hello, World!

Link copied to clipboard
.isempty string:{String} -> Boolean

Checks if a string is empty.

Link copied to clipboard
.isnotempty string:{String} -> Boolean

Checks if a string is not empty.

Link copied to clipboard
.lowercase string:{String} -> String

Converts a string to lowercase. Example: Hello, World! ->hello, world!

Link copied to clipboard
.string value:{String} -> String

Creates a string. If value is delimited by " characters, they are removed and the wrapped string is not trimmed, as opposed to what usually happens through Quarkdown's parser. Example: " Hello, World! " ->Hello, World!

Link copied to clipboard
.uppercase string:{String} -> String

Converts a string to uppercase. Example: Hello, World! -> `HELLO, WORLD!