Skip to content

Instantly share code, notes, and snippets.

@romainavalle
Last active May 4, 2022 07:15
Show Gist options
  • Save romainavalle/f116cc36eb7ec54a47fdfa55a27e315c to your computer and use it in GitHub Desktop.
Save romainavalle/f116cc36eb7ec54a47fdfa55a27e315c to your computer and use it in GitHub Desktop.
replace lsep chars in nuxt plugin
export default ({ app }, inject) => {
inject('tf', (text) => text.replace(/[\u2028]/g, ' '))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment