mirror of
https://github.com/thelounge/thelounge
synced 2024-11-11 07:04:18 +00:00
Support MIRC style terminators (^O)
This commit is contained in:
parent
3fc80efd7c
commit
a53544b44a
1 changed files with 4 additions and 0 deletions
|
@ -50,6 +50,7 @@ function uri(text) {
|
|||
|
||||
var regex = {
|
||||
color: /\003([0-9]{1,2})[,]?([0-9]{1,2})?([^\003]+)/,
|
||||
terminator: /\x0D/,
|
||||
styles: [
|
||||
[/\002([^\002]+)(\002)?/, ["<b>", "</b>"]],
|
||||
[/\037([^\037]+)(\037)?/, ["<u>", "</u>"]],
|
||||
|
@ -59,6 +60,9 @@ function colors(text) {
|
|||
if (!text) {
|
||||
return text;
|
||||
}
|
||||
if (regex.terminator.test(text)) {
|
||||
return $.map(text.split(regex.terminator), colors);
|
||||
}
|
||||
if (regex.color.test(text)) {
|
||||
var match;
|
||||
while (match = regex.color.exec(text)) {
|
||||
|
|
Loading…
Reference in a new issue