static-cms/src/formats/formats.js

6 lines
136 B
JavaScript
Raw Normal View History

import YAMLFrontmatter from './yaml-frontmatter';
export function resolveFormat(collection, entry) {
return new YAMLFrontmatter();
}