mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-26 14:32:04 -04:00
[sources] fix escaping @
This commit is contained in:
parent
4d08a25288
commit
4c71acd295
@ -114,7 +114,7 @@ export class Source {
|
||||
this.extra = extra;
|
||||
this.year = year;
|
||||
this.fragments = fragments
|
||||
? fragments.replace(/\|/g, '\n').replace('\\@', '###').split('@').map(x => x.replace('###', '@'))
|
||||
? fragments.replace(/\|/g, '\n').replace(/\\@/g, '###').split('@').map(x => x.replace(/###/g, '@'))
|
||||
: [];
|
||||
this.comment = comment;
|
||||
this.link = link;
|
||||
|
Loading…
x
Reference in New Issue
Block a user