.capitalize string:{String} -> String
Capitalizes the first character of a string. Example: hello, world! ->Hello, world!
hello, world!
Hello, world!
.concatenate a:{String} with:{String} if:{Boolean = true}-> String
Concatenates two strings if a condition is met. Example: Hello, and World! ->Hello, World!
Hello,
World!
Hello, World!
.isempty string:{String} -> Boolean
Checks if a string is empty.
.isnotempty string:{String} -> Boolean
Checks if a string is not empty.
.lowercase string:{String} -> String
Converts a string to lowercase. Example: Hello, World! ->hello, world!
.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!
"
" Hello, World! "
.uppercase string:{String} -> String
Converts a string to uppercase. Example: Hello, World! -> `HELLO, WORLD!