Add user picture to desktop sidebar; change text input to textarea to allow resizing.
This commit is contained in:
parent
5943621dbf
commit
c5218f3c1a
5 changed files with 67 additions and 12 deletions
|
|
@ -10,7 +10,7 @@ export class Parser {
|
|||
|
||||
const regex = new RegExp(`(^|\\s)${esc}(.+?)${esc}(?=\\s|$)`, "gs");
|
||||
|
||||
this.input = this.input.replace(regex, (match, pre, inner) => {
|
||||
this.input = this.input.replace(regex, (_match, pre, inner) => {
|
||||
return `${pre}${to.replace("$1", inner)}`;
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue