fix: non-latin tags don't cause error

This commit is contained in:
Vitaly Baev 2021-08-20 18:03:38 +03:00
parent 4d6114f8f8
commit 0793b0dbe7
3 changed files with 5 additions and 7 deletions

View File

@ -1,8 +1,5 @@
const kebabCase = (str) =>
str &&
str
.match(/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g)
.map((x) => x.toLowerCase())
.join('-')
import { slug } from 'github-slugger'
const kebabCase = (str) => slug(str)
export default kebabCase

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "tailwind-nextjs-starter-blog",
"version": "1.0.0",
"version": "1.1.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -16,6 +16,7 @@
"@tailwindcss/typography": "^0.4.0",
"autoprefixer": "^10.2.5",
"esbuild": "^0.12.15",
"github-slugger": "^1.3.0",
"gray-matter": "^4.0.2",
"image-size": "1.0.0",
"mdx-bundler": "^6.0.1",