mirror of
https://github.com/gromlab-ru/slm-design.git
synced 2026-08-22 07:30:16 +03:00
15 lines
403 B
JavaScript
15 lines
403 B
JavaScript
|
|
const reservedLayerSlugs = new Set(['app', 'compositions', 'domains', 'infra', 'ui', 'shared']);
|
||
|
|
|
||
|
|
export const slugifyHeading = (value) => {
|
||
|
|
const slug = value
|
||
|
|
.replace(/<[^>]+>/g, '')
|
||
|
|
.replace(/`/g, '')
|
||
|
|
.trim()
|
||
|
|
.toLowerCase()
|
||
|
|
.replace(/\s+/g, '-')
|
||
|
|
.replace(/[^\p{L}\p{N}_-]/gu, '')
|
||
|
|
.replace(/-+/g, '-');
|
||
|
|
|
||
|
|
return reservedLayerSlugs.has(slug) ? `layer-${slug}` : slug;
|
||
|
|
};
|