Fix images not displaying in signatures
@ -415,7 +415,7 @@
* @returns {string}
*/
Translator.escape = function escape(text) {
return typeof text === 'string' ? text.replace(/\[/g, '[').replace(/\]/g, ']') : text;
return typeof text === 'string' ? text.replace(/\[\[/g, '[[').replace(/\]\]/g, ']]') : text;
};
/**