This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TIMEZONE=Europe/Berlin | |
# Panel | |
# PANEL_DEBUG=false | |
# PANEL_ENV=production | |
# PANEL_LOCALE=en | |
[email protected] # Needs to be changed. | |
PANEL_URL_SCHEME=https # Needs to be changed. | |
PANEL_URL=pelican.example.org # Needs to be changed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const tests = [ | |
"🏥", | |
"🏠", | |
"⭐", | |
"🤖", | |
"📰", | |
"🗞️", | |
"👎", | |
"🖐️", | |
"👋", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function unMarkdownIfy(text, chars) { | |
if (!chars) chars = ['*', '_', '~', '>', '`', '|'] | |
else chars = chars.split('') | |
chars.forEach(i => { | |
text = text.replaceAll(i, "\\" + i) | |
}) | |
console.log("Thanks for using unMarkdownIfy™ ", text) | |
return text | |
} |