Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Mythus
/
Mage
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Mage
/
api
/
src
/
utils
/
StringParser.ts
Mythus
Upload 233 files
f46e223
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
160 Bytes
export
const
markdownSafe = (
str
:
string
):
string
=>
str
.
replaceAll
(
'_'
,
'\\_'
)
.
replaceAll
(
'*'
,
'\\*'
)
.
replaceAll
(
'['
,
'\\['
)
.
replaceAll
(
'`'
,
'\\`'
)