(message: string)
| 119 | } |
| 120 | |
| 121 | export function error(message: string) { |
| 122 | if (message.startsWith("Error: ")) { |
| 123 | message = message.slice("Error: ".length) |
| 124 | } |
| 125 | println(Style.TEXT_DANGER_BOLD + "Error: " + Style.TEXT_NORMAL + message) |
| 126 | } |
| 127 | |
| 128 | export function markdown(text: string): string { |
| 129 | return text |