mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
754 B
23 lines
754 B
// string.js slugify drops non ascii chars so we have to
|
|
// use a custom implementation here
|
|
const removeDiacritics = require('diacritics').remove
|
|
// eslint-disable-next-line no-control-regex
|
|
const rControl = /[\u0000-\u001f]/g
|
|
const rSpecial = /[\s~`!@#$%^&*()\-_+=[\]{}|\\;:"'<>,.?/]+/g
|
|
|
|
export const slugify = (str: string): string => {
|
|
return removeDiacritics(str)
|
|
// Remove control characters
|
|
.replace(rControl, '')
|
|
// Replace special characters
|
|
.replace(rSpecial, '-')
|
|
// Remove continous separators
|
|
.replace(/\-{2,}/g, '-')
|
|
// Remove prefixing and trailing separtors
|
|
.replace(/^\-+|\-+$/g, '')
|
|
// ensure it doesn't start with a number (#121)
|
|
.replace(/^(\d)/, '_$1')
|
|
// lowercase
|
|
.toLowerCase()
|
|
}
|