Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
山田 (yuki20020924@gnusocial.jp)'s status on Wednesday, 05-Jul-2023 11:52:32 JST山田 ```js
text = text.replace(/\n/g,'<br>').replace(/\t/g, ' ');
```
を
```js
text = text.replace(/\n/g,'<br>').replace(/\t/g, ' ').replace(/ /g, ' ');
```
に置換することでうまくいきそうですね。