mirror of
https://github.com/penxio/penx.git
synced 2026-04-19 03:03:06 -04:00
11 lines
224 B
TypeScript
11 lines
224 B
TypeScript
export function convertToValidHtmlId(title: string) {
|
|
const sanitizedTitle = title
|
|
.toLowerCase()
|
|
.replace(/[^\w\s-]/g, '')
|
|
.replace(/\s+/g, '-')
|
|
.replace(/-+/g, '-')
|
|
.trim()
|
|
|
|
return sanitizedTitle
|
|
}
|