export function writeTopicType()

in tools/cleaner.ts [39:49]


export function writeTopicType(
	filePath: string,
	fm: MarkdownFrontmatter
): MarkdownFrontmatter {
	if (filePath.includes("/products/")) {
		fm.topicType = "product";
	} else if (filePath.includes("/technologies/")) {
		fm.topicType = "technology";
	}
	return fm;
}