mirror of
https://github.com/Spengreb/sync.git
synced 2026-05-14 03:32:06 +00:00
Patch italic regex to not kill URLs
:
This commit is contained in:
parent
7b11651e1e
commit
6ba6db1965
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ var Channel = function(name) {
|
|||
this.filters = [
|
||||
[new RegExp("`([^`]+)`", "g"), "<code>$1</code>", true],
|
||||
[new RegExp("\\*([^\\*]+)\\*", "g"), "<strong>$1</strong>", true],
|
||||
[new RegExp("_([^_]+)_", "g"), "<em>$1</em>", true]
|
||||
[new RegExp(" _([^_]+)_", "g"), " <em>$1</em>", true]
|
||||
];
|
||||
|
||||
this.ipbans = {};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue