draaft
Version:
A CLI to pull content from https://pilot.pm content collaboration platform and feed your static site generator with markdown files
19 lines (18 loc) • 663 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var FrontmatterFormat;
(function (FrontmatterFormat) {
FrontmatterFormat["yaml"] = "yaml";
FrontmatterFormat["toml"] = "toml";
})(FrontmatterFormat = exports.FrontmatterFormat || (exports.FrontmatterFormat = {}));
var I18nMode;
(function (I18nMode) {
I18nMode["none"] = "none";
I18nMode["directory"] = "directory";
I18nMode["filename"] = "filename";
})(I18nMode = exports.I18nMode || (exports.I18nMode = {}));
var SSGType;
(function (SSGType) {
SSGType["hugo"] = "hugo";
SSGType["gatsby"] = "gatsby";
})(SSGType = exports.SSGType || (exports.SSGType = {}));