This website requires JavaScript.
Explore
Help
Register
Sign In
mirror
/
mobilizon
mirror of
https://framagit.org/framasoft/mobilizon.git
Watch
1
Star
0
Fork
You've already forked mobilizon
0
Code
Issues
Releases
Wiki
Activity
72185daed0
mobilizon
/
js
/
src
/
utils
/
html.ts
4 lines
98 B
TypeScript
Raw
Normal View
History
Unescape
Escape
Fix eslint warnings Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2020-11-27 18:27:44 +00:00
export
function
nl2br
(
text
:
string
)
:
string
{
Introduce group basic federation, event new page and notifications Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2020-02-18 07:57:00 +00:00
return
text
.
replace
(
/(?:\r\n|\r|\n)/g
,
"<br>"
)
;
Test implementation of my account page
2019-04-26 13:22:16 +00:00
}