import { emojifyText } from './emojifyText' export function massageUserText (text, emojis, $autoplayGifs) { text = text || '' text = emojifyText(text, emojis, $autoplayGifs) // GNU Social and Pleroma don't add

tags if (text && !text.startsWith('

')) { text = `

${text}

` } return text }