1
0
silverbullet/plug-api/lib/page.ts

5 lines
188 B
TypeScript
Raw Normal View History

export function isValidPageName(name: string): boolean {
// Page can not be empty and not end with a file extension (e.g. "bla.md")
return name !== "" && !/\.[a-zA-Z]+$/.test(name);
}