Last active
August 29, 2015 14:13
-
-
Save sikachu/e1d96399ffbb7f872d32 to your computer and use it in GitHub Desktop.
Green quoting for Colloquy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using terms from application "Colloquy" | |
on process outgoing chat message m | |
set messageBody to body of m as string | |
if messageBody starts with ">" then | |
set HTML of m to "<font color=\"green\">" & messageBody & "</font>" | |
end if | |
end process outgoing chat message | |
end using terms from |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment