feat(theme): replace with twemojis

This commit is contained in:
taskylizard
2024-01-24 07:53:57 +00:00
parent 4cead6f935
commit 0e69461b59
4 changed files with 56 additions and 2 deletions

4
.github/replace.py vendored
View File

@@ -53,6 +53,10 @@ def general(text: str):
text = re.sub("## ▷", "###", text)
text = re.sub("####", "###", text)
text = re.sub("", ":star:", text)
text = re.sub("🌐", ":globe-with-meridians: ", text)
text = re.sub("↪️ ", ":repeat-button: ", text)
text = re.sub(
r"^\*\*Note\*\* - (.+)$", r":::tip\n\1\n:::", text, flags=re.MULTILINE
)