Merge branch 'main' into redesign

This commit is contained in:
taskylizard 2025-06-30 13:49:36 +00:00
commit 13d38a728f
No known key found for this signature in database
GPG key ID: 1820131ED1A24120
26 changed files with 314 additions and 309 deletions

View file

@ -204,6 +204,7 @@ export function transform(text: string): string {
.replace(/.25BA_/g, '')
.replace(/.25B7_/g, '')
.replace(/_.2F_/g, '-')
.replace(/_?.26amp.3B_?/g, '-')
_text = replaceUnderscore(_text)
.replace(/\/#(\d)/g, '/#_$1') // Prefix headings starting with numbers
@ -215,7 +216,6 @@ export function transform(text: string): string {
.replace(/## ▷/g, '###')
.replace(/####/g, '###')
// Replace emojis
.replace(/🌟/g, ':glowing-star:')
.replace(/⭐/g, ':star:')
.replace(/🌐/g, ':globe-with-meridians:')
.replace(/↪/g, ':repeat-button:')