Who knows how to transliterate links on the go? I have a website being developed on Gatsby. I'm creating a category for a post there, writing it in frontmatter. Some categories can be written in Cyrillic.
---
title: "Yet Another Post"
date: "2021-07-25"
slug: "yet-another-post"
tags: ["animals", "Chicago", "zoos"]
categories: ["GatsbyJS", "Gatsby Develop", "Сайт с нуля"]
featuredImage: "./third.jpg"
---
Then in your gatsby-node.js I am creating a page for this category (I use a kebab case, since the url is formed from the category name)
createPage({
path: `blog/category/${_.kebabCase(category)}`,
component: require.resolve("./src/templates/categories.js"),
As a result, it turns out that the link to the page of the category "Сайт с нуля" ("Site from scratch" for eng) will look like www.domain.ru/blog/category/сайт-с-нуля
, and I would like to have transliteration of links, for example www.domain.ru/blog/category/sait-s-nulya
. Is it possible?