Lines 31-39
return {
Link Here
|
31 |
say $out "Added 'XXX' HTML customization"; |
31 |
say $out "Added 'XXX' HTML customization"; |
32 |
|
32 |
|
33 |
# Other information |
33 |
# Other information |
34 |
say_failure("Use red for danger/failure"); |
34 |
say_failure( $out, "Use red for danger/failure" ); |
35 |
say_success("Use green for success"); |
35 |
say_success( $out, "Use green for success" ); |
36 |
say_warning("Use yellow for warning/a call to action"); |
36 |
say_warning( $out, "Use yellow for warning/a call to action" ); |
37 |
say_info("Use blue for further information"); |
37 |
say_info( $out, "Use blue for further information" ); |
38 |
}, |
38 |
}, |
39 |
}; |
39 |
}; |
40 |
- |
|
|