Skip to main content
Module

x/lume/plugins/slugify_urls.ts

🔥 Static site generator for Deno 🦕
Very Popular
Go to Latest
File
import { posix } from "../deps/path.ts";import { merge } from "../core/utils.ts";
import type { Helper, Page, Site } from "../core.ts";
export interface Options { /** The list of extensions this plugin applies to */ extensions: string[];
/** Convert the paths to lower case */ lowercase: boolean;
/** Remove all non-alphanumeric characters */ alphanumeric: boolean;
/** Character used as word separator */ separator: string;
/** Characters to replace */ replace: { [index: string]: string; };}
// Default optionsexport const defaults: Options = { extensions: [".html"], lowercase: true, alphanumeric: true, separator: "-", replace: { "Ð": "D", // eth "ð": "d", "Đ": "D", // crossed D "đ": "d", "ø": "o", "ß": "ss", "æ": "ae", "œ": "oe", },};
/** A plugin to slugify all URLs, replacing non-URL-safe characters */export default function (userOptions?: Partial<Options>) { const options = merge(defaults, userOptions); const slugify = createSlugifier(options);
return (site: Site) => { site.filter("slugify", slugify as Helper); site.preprocess(options.extensions, slugifyUrls); };
function slugifyUrls(page: Page) { const { dest } = page; const path = slugify(dest.path);
if (path === dest.path) { return; }
dest.path = path;
page.data.url = (dest.ext === ".html" && posix.basename(dest.path) === "index") ? dest.path.slice(0, -5) : dest.path + dest.ext; }}
export function createSlugifier( options: Options = defaults,): (string: string) => string { const { lowercase, alphanumeric, separator, replace } = options;
return function (string) { if (lowercase) { string = string.toLowerCase(); }
string = string.replaceAll(/[^a-z\d/.-]/giu, (char) => { if (char in replace) { return replace[char]; }
if (alphanumeric) { char = char.normalize("NFKD").replaceAll(/[\u0300-\u036F]/g, ""); }
char = /[\p{L}\u0300-\u036F]/u.test(char) ? char : "-";
return alphanumeric && /[^\w-]/.test(char) ? "" : char; });
if (lowercase) { string = string.toLowerCase(); }
return string .replaceAll(/(?<=^|[/.])-+(?=[^/.-])|(?<=[^/.-])-+(?=$|[/.])/g, "") .replaceAll(/-+/g, separator); };}