Files
IRC-kosmi-relay/bridge/irc/formatting.go
2025-11-01 10:40:53 -04:00

16 lines
439 B
Go

package birc
// IRC formatting control codes
const (
IRCBold = "\x02" // Bold
IRCMonospace = "\x11" // Monospace/fixed-width font
IRCReset = "\x0F" // Reset all formatting
)
// FormatRoomCode formats a room code with IRC bold and monospace formatting
// Returns the code wrapped in bold + monospace with a reset at the end
func FormatRoomCode(roomCode string) string {
return IRCBold + IRCMonospace + roomCode + IRCReset
}