Revert "back to M$ — playtime is over"

This reverts commit ed41d99484.
This commit is contained in:
Austin Chen 2022-05-18 12:08:22 -04:00
parent ca9e93fe47
commit 7b3c8ea046
2 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ export const PROD_CONFIG: EnvConfig = {
],
visibility: 'PUBLIC',
moneyMoniker: 'M$',
moneyMoniker: 'ϻ',
navbarLogoPath: '',
faviconPath: '/favicon.ico',
newQuestionPlaceholders: [

View File

@ -6,8 +6,8 @@ import { SiteLink } from './site-link'
export function Linkify(props: { text: string; gray?: boolean }) {
let { text, gray } = props
// Replace "m1234" with "ϻ1234"
// const mRegex = /(\W|^)m(\d+)/g
// text = text.replace(mRegex, (_, pre, num) => `${pre}ϻ${num}`)
const mRegex = /(\W|^)m(\d+)/g
text = text.replace(mRegex, (_, pre, num) => `${pre}ϻ${num}`)
// Find instances of @username, #hashtag, and https://...
const regex =