1function formatBlogTitleUrl(title: string): string { 2 return title.toLowerCase().replaceAll(" ", "-"); 3} 4 5export default formatBlogTitleUrl;