export function cleanAllResources()

in tools/cleaner.ts [51:60]


export function cleanAllResources(
	resources: MarkdownResources
): Record<string, string> {
	/* For all Markdown resources, clean them up and return string for disk  */
	const results: Record<string, string> = {};
	Object.entries(resources).forEach((markdownRecord) => {
		results[markdownRecord[0]] = cleanResource(markdownRecord);
	});
	return results;
}